87968: Automatic migration from TSLint to ESLint

Via `ng g @angular-eslint/schematics:convert-tslint-to-eslint`
This commit is contained in:
Yura Bondarenko
2022-03-25 10:29:07 +01:00
parent ec6327edc2
commit 245977a432
151 changed files with 292 additions and 596 deletions

View File

@@ -153,7 +153,6 @@
"@typescript-eslint/eslint-plugin": "5.11.0", "@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0", "@typescript-eslint/parser": "5.11.0",
"axe-core": "^4.3.3", "axe-core": "^4.3.3",
"codelyzer": "^6.0.0",
"compression-webpack-plugin": "^3.0.1", "compression-webpack-plugin": "^3.0.1",
"copy-webpack-plugin": "^6.4.1", "copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
@@ -199,7 +198,6 @@
"terser-webpack-plugin": "^2.3.1", "terser-webpack-plugin": "^2.3.1",
"ts-loader": "^5.2.0", "ts-loader": "^5.2.0",
"ts-node": "^8.10.2", "ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.69.1", "webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.4.0", "webpack-bundle-analyzer": "^4.4.0",

View File

@@ -16,7 +16,7 @@ export const EPeopleRegistryActionTypes = {
CANCEL_EDIT_EPERSON: type('dspace/epeople-registry/CANCEL_EDIT_EPERSON'), CANCEL_EDIT_EPERSON: type('dspace/epeople-registry/CANCEL_EDIT_EPERSON'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Used to edit an EPerson in the EPeople registry * Used to edit an EPerson in the EPeople registry
*/ */
@@ -37,7 +37,7 @@ export class EPeopleRegistryCancelEPersonAction implements Action {
type = EPeopleRegistryActionTypes.CANCEL_EDIT_EPERSON; type = EPeopleRegistryActionTypes.CANCEL_EDIT_EPERSON;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* Export a type alias of all actions in this action group * Export a type alias of all actions in this action group

View File

@@ -16,7 +16,7 @@ export const GroupRegistryActionTypes = {
CANCEL_EDIT_GROUP: type('dspace/epeople-registry/CANCEL_EDIT_GROUP'), CANCEL_EDIT_GROUP: type('dspace/epeople-registry/CANCEL_EDIT_GROUP'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Used to edit a Group in the Group registry * Used to edit a Group in the Group registry
*/ */
@@ -37,7 +37,7 @@ export class GroupRegistryCancelGroupAction implements Action {
type = GroupRegistryActionTypes.CANCEL_EDIT_GROUP; type = GroupRegistryActionTypes.CANCEL_EDIT_GROUP;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* Export a type alias of all actions in this action group * Export a type alias of all actions in this action group

View File

@@ -17,7 +17,7 @@ export const BitstreamFormatsRegistryActionTypes = {
DESELECT_ALL_FORMAT: type('dspace/bitstream-formats-registry/DESELECT_ALL_FORMAT') DESELECT_ALL_FORMAT: type('dspace/bitstream-formats-registry/DESELECT_ALL_FORMAT')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Used to select a single bitstream format in the bitstream format registry * Used to select a single bitstream format in the bitstream format registry
*/ */
@@ -51,7 +51,7 @@ export class BitstreamFormatsRegistryDeselectAllAction implements Action {
type = BitstreamFormatsRegistryActionTypes.DESELECT_ALL_FORMAT; type = BitstreamFormatsRegistryActionTypes.DESELECT_ALL_FORMAT;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* Export a type alias of all actions in this action group * Export a type alias of all actions in this action group

View File

@@ -26,7 +26,7 @@ export const MetadataRegistryActionTypes = {
DESELECT_ALL_FIELD: type('dspace/metadata-registry/DESELECT_ALL_FIELD') DESELECT_ALL_FIELD: type('dspace/metadata-registry/DESELECT_ALL_FIELD')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Used to edit a metadata schema in the metadata registry * Used to edit a metadata schema in the metadata registry
*/ */
@@ -133,7 +133,7 @@ export class MetadataRegistryDeselectAllFieldAction implements Action {
type = MetadataRegistryActionTypes.DESELECT_ALL_FIELD; type = MetadataRegistryActionTypes.DESELECT_ALL_FIELD;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* Export a type alias of all actions in this action group * Export a type alias of all actions in this action group

View File

@@ -52,7 +52,7 @@ describe('MetadataRegistryComponent', () => {
} }
]; ];
const mockSchemas = createSuccessfulRemoteDataObject$(buildPaginatedList(null, mockSchemasList)); const mockSchemas = createSuccessfulRemoteDataObject$(buildPaginatedList(null, mockSchemasList));
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
const registryServiceStub = { const registryServiceStub = {
getMetadataSchemas: () => mockSchemas, getMetadataSchemas: () => mockSchemas,
getActiveMetadataSchema: () => observableOf(undefined), getActiveMetadataSchema: () => observableOf(undefined),
@@ -66,7 +66,7 @@ describe('MetadataRegistryComponent', () => {
}, },
clearMetadataSchemaRequests: () => observableOf(undefined) clearMetadataSchemaRequests: () => observableOf(undefined)
}; };
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
paginationService = new PaginationServiceStub(); paginationService = new PaginationServiceStub();

View File

@@ -17,7 +17,7 @@ describe('MetadataSchemaFormComponent', () => {
let fixture: ComponentFixture<MetadataSchemaFormComponent>; let fixture: ComponentFixture<MetadataSchemaFormComponent>;
let registryService: RegistryService; let registryService: RegistryService;
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
const registryServiceStub = { const registryServiceStub = {
getActiveMetadataSchema: () => observableOf(undefined), getActiveMetadataSchema: () => observableOf(undefined),
createOrUpdateMetadataSchema: (schema: MetadataSchema) => observableOf(schema), createOrUpdateMetadataSchema: (schema: MetadataSchema) => observableOf(schema),
@@ -33,7 +33,7 @@ describe('MetadataSchemaFormComponent', () => {
}; };
} }
}; };
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
beforeEach(waitForAsync(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({

View File

@@ -24,7 +24,7 @@ describe('MetadataFieldFormComponent', () => {
prefix: 'fake' prefix: 'fake'
}); });
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
const registryServiceStub = { const registryServiceStub = {
getActiveMetadataField: () => observableOf(undefined), getActiveMetadataField: () => observableOf(undefined),
createMetadataField: (field: MetadataField) => observableOf(field), createMetadataField: (field: MetadataField) => observableOf(field),
@@ -43,7 +43,7 @@ describe('MetadataFieldFormComponent', () => {
}; };
} }
}; };
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
beforeEach(waitForAsync(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({

View File

@@ -106,7 +106,7 @@ describe('MetadataSchemaComponent', () => {
} }
]; ];
const mockSchemas = createSuccessfulRemoteDataObject$(buildPaginatedList(null, mockSchemasList)); const mockSchemas = createSuccessfulRemoteDataObject$(buildPaginatedList(null, mockSchemasList));
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
const registryServiceStub = { const registryServiceStub = {
getMetadataSchemas: () => mockSchemas, getMetadataSchemas: () => mockSchemas,
getMetadataFieldsBySchema: (schema: MetadataSchema) => createSuccessfulRemoteDataObject$(buildPaginatedList(null, mockFieldsList.filter((value) => value.id === 3 || value.id === 4))), getMetadataFieldsBySchema: (schema: MetadataSchema) => createSuccessfulRemoteDataObject$(buildPaginatedList(null, mockFieldsList.filter((value) => value.id === 3 || value.id === 4))),
@@ -122,7 +122,7 @@ describe('MetadataSchemaComponent', () => {
}, },
clearMetadataFieldRequests: () => observableOf(undefined) clearMetadataFieldRequests: () => observableOf(undefined)
}; };
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
const schemaNameParam = 'mock'; const schemaNameParam = 'mock';
const activatedRouteStub = Object.assign(new ActivatedRouteStub(), { const activatedRouteStub = Object.assign(new ActivatedRouteStub(), {
params: observableOf({ params: observableOf({

View File

@@ -12,7 +12,7 @@ import { Router } from '@angular/router';
* Represents a non-expandable section in the admin sidebar * Represents a non-expandable section in the admin sidebar
*/ */
@Component({ @Component({
/* tslint:disable:component-selector */ /* eslint-disable @angular-eslint/component-selector */
selector: 'li[ds-admin-sidebar-section]', selector: 'li[ds-admin-sidebar-section]',
templateUrl: './admin-sidebar-section.component.html', templateUrl: './admin-sidebar-section.component.html',
styleUrls: ['./admin-sidebar-section.component.scss'], styleUrls: ['./admin-sidebar-section.component.scss'],

View File

@@ -15,7 +15,7 @@ import { Router } from '@angular/router';
* Represents a expandable section in the sidebar * Represents a expandable section in the sidebar
*/ */
@Component({ @Component({
/* tslint:disable:component-selector */ /* eslint-disable @angular-eslint/component-selector */
selector: 'li[ds-expandable-admin-sidebar-section]', selector: 'li[ds-expandable-admin-sidebar-section]',
templateUrl: './expandable-admin-sidebar-section.component.html', templateUrl: './expandable-admin-sidebar-section.component.html',
styleUrls: ['./expandable-admin-sidebar-section.component.scss'], styleUrls: ['./expandable-admin-sidebar-section.component.scss'],

View File

@@ -110,15 +110,15 @@ describe('CollectionItemMapperComponent', () => {
}; };
const searchServiceStub = Object.assign(new SearchServiceStub(), { const searchServiceStub = Object.assign(new SearchServiceStub(), {
search: () => observableOf(emptyList), search: () => observableOf(emptyList),
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
clearDiscoveryRequests: () => {} clearDiscoveryRequests: () => {}
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}); });
const collectionDataServiceStub = { const collectionDataServiceStub = {
getMappedItems: () => observableOf(emptyList), getMappedItems: () => observableOf(emptyList),
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
clearMappedItemsRequests: () => {} clearMappedItemsRequests: () => {}
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}; };
const routeServiceStub = { const routeServiceStub = {
getRouteParameterValue: () => { getRouteParameterValue: () => {

View File

@@ -108,7 +108,7 @@ export const MAX_COMCOLS_PER_PAGE = 20;
* Service class for the community list, responsible for the creating of the flat list used by communityList dataSource * Service class for the community list, responsible for the creating of the flat list used by communityList dataSource
* and connection to the store to retrieve and save the state of the community list * and connection to the store to retrieve and save the state of the community list
*/ */
// tslint:disable-next-line:max-classes-per-file // eslint-disable-next-line max-classes-per-file
@Injectable() @Injectable()
export class CommunityListService { export class CommunityListService {

View File

@@ -39,7 +39,7 @@ export const AuthActionTypes = {
UNSET_USER_AS_IDLE: type('dspace/auth/UNSET_USER_AS_IDLE') UNSET_USER_AS_IDLE: type('dspace/auth/UNSET_USER_AS_IDLE')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Authenticate. * Authenticate.
@@ -411,7 +411,7 @@ export class SetUserAsIdleAction implements Action {
export class UnsetUserAsIdleAction implements Action { export class UnsetUserAsIdleAction implements Action {
public type: string = AuthActionTypes.UNSET_USER_AS_IDLE; public type: string = AuthActionTypes.UNSET_USER_AS_IDLE;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* Actions type. * Actions type.

View File

@@ -20,9 +20,9 @@ describe(`AuthInterceptor`, () => {
const authServiceStub = new AuthServiceStub(); const authServiceStub = new AuthServiceStub();
const store: Store<TruncatablesState> = jasmine.createSpyObj('store', { const store: Store<TruncatablesState> = jasmine.createSpyObj('store', {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
dispatch: {}, dispatch: {},
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
select: observableOf(true) select: observableOf(true)
}); });

View File

@@ -144,7 +144,7 @@ export class AuthInterceptor implements HttpInterceptor {
const regex = /(\w+ (\w+=((".*?")|[^,]*)(, )?)*)/g; const regex = /(\w+ (\w+=((".*?")|[^,]*)(, )?)*)/g;
const realms = completeWWWauthenticateHeader.match(regex); const realms = completeWWWauthenticateHeader.match(regex);
// tslint:disable-next-line:forin // eslint-disable-next-line guard-for-in
for (const j in realms) { for (const j in realms) {
const splittedRealm = realms[j].split(', '); const splittedRealm = realms[j].split(', ');

View File

@@ -18,7 +18,7 @@ import { RemoteData } from '../data/remote-data';
import { FindListOptions } from '../data/request.models'; import { FindListOptions } from '../data/request.models';
import { PaginatedList } from '../data/paginated-list.model'; import { PaginatedList } from '../data/paginated-list.model';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class DataServiceImpl extends DataService<BrowseDefinition> { class DataServiceImpl extends DataService<BrowseDefinition> {
protected linkPath = 'browses'; protected linkPath = 'browses';
@@ -123,4 +123,4 @@ export class BrowseDefinitionDataService {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -3,7 +3,7 @@ import { HALResource } from '../../shared/hal-resource.model';
import { ResourceType } from '../../shared/resource-type'; import { ResourceType } from '../../shared/resource-type';
import { dataService, getDataServiceFor, getLinkDefinition, link, } from './build-decorators'; import { dataService, getDataServiceFor, getLinkDefinition, link, } from './build-decorators';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class TestService { class TestService {
} }
@@ -80,4 +80,4 @@ describe('build decorators', () => {
}); });
}); });
}); });
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -12,7 +12,7 @@ import { isEmpty } from 'rxjs/operators';
const TEST_MODEL = new ResourceType('testmodel'); const TEST_MODEL = new ResourceType('testmodel');
let result: any; let result: any;
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class TestModel implements HALResource { class TestModel implements HALResource {
static type = TEST_MODEL; static type = TEST_MODEL;
@@ -251,4 +251,4 @@ describe('LinkService', () => {
}); });
}); });
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -15,7 +15,7 @@ export const ObjectCacheActionTypes = {
APPLY_PATCH: type('dspace/core/cache/object/APPLY_PATCH') APPLY_PATCH: type('dspace/core/cache/object/APPLY_PATCH')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An ngrx action to add an object to the cache * An ngrx action to add an object to the cache
*/ */
@@ -126,7 +126,7 @@ export class ApplyPatchObjectCacheAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all ObjectCacheActions * A type to encompass all ObjectCacheActions

View File

@@ -105,10 +105,10 @@ describe('objectCacheReducer', () => {
const action = new AddToObjectCacheAction(objectToCache, timeCompleted, msToLive, requestUUID, altLink1); const action = new AddToObjectCacheAction(objectToCache, timeCompleted, msToLive, requestUUID, altLink1);
const newState = objectCacheReducer(testState, action); const newState = objectCacheReducer(testState, action);
/* tslint:disable:no-string-literal */ /* eslint-disable @typescript-eslint/dot-notation */
expect(newState[selfLink1].data['foo']).toBe('baz'); expect(newState[selfLink1].data['foo']).toBe('baz');
expect(newState[selfLink1].data['somethingElse']).toBe(true); expect(newState[selfLink1].data['somethingElse']).toBe(true);
/* tslint:enable:no-string-literal */ /* eslint-enable @typescript-eslint/dot-notation */
}); });
it('should perform the ADD action without affecting the previous state', () => { it('should perform the ADD action without affecting the previous state', () => {

View File

@@ -49,7 +49,7 @@ export const getResourceTypeValueFor = (type: any): string => {
} }
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An interface to represent objects that can be cached * An interface to represent objects that can be cached
* *
@@ -110,7 +110,7 @@ export class ObjectCacheEntry implements CacheEntry {
alternativeLinks: string[]; alternativeLinks: string[];
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* The ObjectCache State * The ObjectCache State

View File

@@ -5,7 +5,7 @@ import { DSpaceObject } from '../shared/dspace-object.model';
import { HALLink } from '../shared/hal-link.model'; import { HALLink } from '../shared/hal-link.model';
import { UnCacheableObject } from '../shared/uncacheable-object.model'; import { UnCacheableObject } from '../shared/uncacheable-object.model';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
export class RestResponse { export class RestResponse {
public toCache = true; public toCache = true;
public timeCompleted: number; public timeCompleted: number;
@@ -140,4 +140,4 @@ export class FilteredDiscoveryQueryResponse extends RestResponse {
super(true, statusCode, statusText); super(true, statusCode, statusText);
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -12,7 +12,7 @@ export const ServerSyncBufferActionTypes = {
EMPTY: type('dspace/core/cache/syncbuffer/EMPTY'), EMPTY: type('dspace/core/cache/syncbuffer/EMPTY'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An ngrx action to add a new cached object to the server sync buffer * An ngrx action to add a new cached object to the server sync buffer
@@ -71,7 +71,7 @@ export class EmptySSBAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all ServerSyncBufferActions * A type to encompass all ServerSyncBufferActions

View File

@@ -83,7 +83,7 @@ describe('ServerSyncBufferEffects', () => {
}); });
it('should return a COMMIT action in response to an ADD action', () => { it('should return a COMMIT action in response to an ADD action', () => {
// tslint:disable-next-line:no-shadowed-variable // eslint-disable-next-line @typescript-eslint/no-shadow
testScheduler.run(({ hot, expectObservable }) => { testScheduler.run(({ hot, expectObservable }) => {
actions = hot('a', { actions = hot('a', {
a: { a: {

View File

@@ -31,7 +31,7 @@ class DataServiceImpl extends DataService<ConfigObject> {
} }
} }
// tslint:disable-next-line:max-classes-per-file // eslint-disable-next-line max-classes-per-file
export abstract class ConfigService { export abstract class ConfigService {
/** /**
* A private DataService instance to delegate specific methods to. * A private DataService instance to delegate specific methods to.

View File

@@ -4,7 +4,7 @@ import { CacheableObject } from '../cache/object-cache.reducer';
import { GetRequest, RestRequest } from './request.models'; import { GetRequest, RestRequest } from './request.models';
import { DSpaceObject } from '../shared/dspace-object.model'; import { DSpaceObject } from '../shared/dspace-object.model';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class TestService extends BaseResponseParsingService { class TestService extends BaseResponseParsingService {
toCache = true; toCache = true;
@@ -101,4 +101,4 @@ describe('BaseResponseParsingService', () => {
}); });
}); });
}); });
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -10,7 +10,7 @@ import { getClassForType } from '../cache/builders/build-decorators';
import { RestRequest } from './request.models'; import { RestRequest } from './request.models';
import { environment } from '../../../environments/environment'; import { environment } from '../../../environments/environment';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Return true if halObj has a value for `_links.self` * Return true if halObj has a value for `_links.self`
@@ -180,4 +180,4 @@ export abstract class BaseResponseParsingService {
return statusCode >= 200 && statusCode < 300; return statusCode >= 200 && statusCode < 300;
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -49,7 +49,7 @@ class TestService extends ComColDataService<any> {
} }
} }
// tslint:disable:no-shadowed-variable /* eslint-disable @typescript-eslint/no-shadow */
describe('ComColDataService', () => { describe('ComColDataService', () => {
let service: TestService; let service: TestService;
let requestService: RequestService; let requestService: RequestService;

View File

@@ -15,7 +15,7 @@ import { ConfigurationProperty } from '../shared/configuration-property.model';
import { DefaultChangeAnalyzer } from './default-change-analyzer.service'; import { DefaultChangeAnalyzer } from './default-change-analyzer.service';
import { CONFIG_PROPERTY } from '../shared/config-property.resource-type'; import { CONFIG_PROPERTY } from '../shared/config-property.resource-type';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class DataServiceImpl extends DataService<ConfigurationProperty> { class DataServiceImpl extends DataService<ConfigurationProperty> {
protected linkPath = 'properties'; protected linkPath = 'properties';
@@ -60,4 +60,4 @@ export class ConfigurationDataService {
return this.dataService.findById(name); return this.dataService.findById(name);
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -26,7 +26,7 @@ import { RequestEntryState } from './request.reducer';
const endpoint = 'https://rest.api/core'; const endpoint = 'https://rest.api/core';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class TestService extends DataService<any> { class TestService extends DataService<any> {
constructor( constructor(
@@ -833,4 +833,4 @@ describe('DataService', () => {
}); });
}); });
}); });
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -18,7 +18,7 @@ import { RequestService } from './request.service';
import { FindListOptions } from './request.models'; import { FindListOptions } from './request.models';
import { PaginatedList } from './paginated-list.model'; import { PaginatedList } from './paginated-list.model';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class DataServiceImpl extends DataService<DSpaceObject> { class DataServiceImpl extends DataService<DSpaceObject> {
protected linkPath = 'dso'; protected linkPath = 'dso';
@@ -104,4 +104,4 @@ export class DSpaceObjectDataService {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -18,7 +18,7 @@ import { RestRequestMethod } from './rest-request-method';
import { getUrlWithoutEmbedParams, getEmbedSizeParams } from '../index/index.selectors'; import { getUrlWithoutEmbedParams, getEmbedSizeParams } from '../index/index.selectors';
import { URLCombiner } from '../url-combiner/url-combiner'; import { URLCombiner } from '../url-combiner/url-combiner';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Return true if obj has a value for `_links.self` * Return true if obj has a value for `_links.self`
@@ -271,4 +271,4 @@ export class DspaceRestResponseParsingService implements ResponseParsingService
return statusCode >= 200 && statusCode < 300; return statusCode >= 200 && statusCode < 300;
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -100,7 +100,7 @@ describe('EpersonRegistrationService', () => {
})); }));
}); });
// tslint:disable:no-shadowed-variable /* eslint-disable @typescript-eslint/no-shadow */
it('should use cached responses and /registrations/search/findByToken?', () => { it('should use cached responses and /registrations/search/findByToken?', () => {
testScheduler.run(({ cold, expectObservable }) => { testScheduler.run(({ cold, expectObservable }) => {
rdbService.buildSingle.and.returnValue(cold('a', { a: rd })); rdbService.buildSingle.and.returnValue(cold('a', { a: rd }));

View File

@@ -20,7 +20,7 @@ import { ITEM_TYPE } from '../shared/item-relationships/item-type.resource-type'
import { LICENSE } from '../shared/license.resource-type'; import { LICENSE } from '../shared/license.resource-type';
import { CacheableObject } from '../cache/object-cache.reducer'; import { CacheableObject } from '../cache/object-cache.reducer';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class DataServiceImpl extends DataService<any> { class DataServiceImpl extends DataService<any> {
// linkPath isn't used if we're only searching by href. // linkPath isn't used if we're only searching by href.
protected linkPath = undefined; protected linkPath = undefined;

View File

@@ -24,7 +24,7 @@ import { hasValue } from '../../shared/empty.util';
import { Operation } from 'fast-json-patch'; import { Operation } from 'fast-json-patch';
import { getFirstCompletedRemoteData } from '../shared/operators'; import { getFirstCompletedRemoteData } from '../shared/operators';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* A custom implementation of the ItemDataService, but for collection item templates * A custom implementation of the ItemDataService, but for collection item templates
* Makes sure to change the endpoint before sending out CRUD requests for the item template * Makes sure to change the endpoint before sending out CRUD requests for the item template
@@ -228,4 +228,4 @@ export class ItemTemplateDataService implements UpdateDataService<Item> {
return this.dataService.getCollectionEndpoint(collectionID); return this.dataService.getCollectionEndpoint(collectionID);
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -21,7 +21,7 @@ export const ObjectUpdatesActionTypes = {
REMOVE_FIELD: type('dspace/core/cache/object-updates/REMOVE_FIELD') REMOVE_FIELD: type('dspace/core/cache/object-updates/REMOVE_FIELD')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Enum that represents the different types of updates that can be performed on a field in the ObjectUpdates store * Enum that represents the different types of updates that can be performed on a field in the ObjectUpdates store
@@ -283,7 +283,7 @@ export class RemoveFieldUpdateAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all ObjectUpdatesActions * A type to encompass all ObjectUpdatesActions

View File

@@ -65,11 +65,11 @@ describe('RelationshipTypeService', () => {
buildList = createSuccessfulRemoteDataObject(createPaginatedList([relationshipType1, relationshipType2])); buildList = createSuccessfulRemoteDataObject(createPaginatedList([relationshipType1, relationshipType2]));
rdbService = getMockRemoteDataBuildService(undefined, observableOf(buildList)); rdbService = getMockRemoteDataBuildService(undefined, observableOf(buildList));
objectCache = Object.assign({ objectCache = Object.assign({
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
remove: () => { remove: () => {
}, },
hasBySelfLinkObservable: () => observableOf(false) hasBySelfLinkObservable: () => observableOf(false)
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}) as ObjectCacheService; }) as ObjectCacheService;
itemService = undefined; itemService = undefined;

View File

@@ -107,12 +107,12 @@ describe('RelationshipService', () => {
'https://rest.api/core/publication/relationships': relationships$ 'https://rest.api/core/publication/relationships': relationships$
}); });
const objectCache = Object.assign({ const objectCache = Object.assign({
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
remove: () => { remove: () => {
}, },
hasBySelfLinkObservable: () => observableOf(false), hasBySelfLinkObservable: () => observableOf(false),
hasByHref$: () => observableOf(false) hasByHref$: () => observableOf(false)
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}) as ObjectCacheService; }) as ObjectCacheService;
const itemService = jasmine.createSpyObj('itemService', { const itemService = jasmine.createSpyObj('itemService', {

View File

@@ -17,7 +17,7 @@ export const RequestActionTypes = {
REMOVE: type('dspace/core/data/request/REMOVE') REMOVE: type('dspace/core/data/request/REMOVE')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
export abstract class RequestUpdateAction implements Action { export abstract class RequestUpdateAction implements Action {
abstract type: string; abstract type: string;
lastUpdated: number; lastUpdated: number;
@@ -185,7 +185,7 @@ export class RequestRemoveAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all RequestActions * A type to encompass all RequestActions

View File

@@ -11,7 +11,7 @@ import { ContentSourceResponseParsingService } from './content-source-response-p
import { DspaceRestResponseParsingService } from './dspace-rest-response-parsing.service'; import { DspaceRestResponseParsingService } from './dspace-rest-response-parsing.service';
import { environment } from '../../../environments/environment'; import { environment } from '../../../environments/environment';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
// uuid and handle requests have separate endpoints // uuid and handle requests have separate endpoints
export enum IdentifierType { export enum IdentifierType {
@@ -280,4 +280,4 @@ export class RequestError extends Error {
statusCode: number; statusCode: number;
statusText: string; statusText: string;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -112,7 +112,7 @@ export class ResponseState {
unCacheableObject?: UnCacheableObject; unCacheableObject?: UnCacheableObject;
} }
// tslint:disable-next-line:max-classes-per-file // eslint-disable-next-line max-classes-per-file
export class RequestEntry { export class RequestEntry {
request: RestRequest; request: RestRequest;
state: RequestEntryState; state: RequestEntryState;

View File

@@ -21,7 +21,7 @@ import { DspaceRestService } from '../dspace-rest/dspace-rest.service';
import { RawRestResponse } from '../dspace-rest/raw-rest-response.model'; import { RawRestResponse } from '../dspace-rest/raw-rest-response.model';
import { catchError, map } from 'rxjs/operators'; import { catchError, map } from 'rxjs/operators';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* A private DataService implementation to delegate specific methods to. * A private DataService implementation to delegate specific methods to.
@@ -131,4 +131,4 @@ export class RootDataService {
this.requestService.setStaleByHrefSubstring(this.halService.getRootHref()); this.requestService.setStaleByHrefSubstring(this.halService.getRootHref());
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -7,7 +7,7 @@ export const HistoryActionTypes = {
GET_HISTORY: type('dspace/history/GET_HISTORY') GET_HISTORY: type('dspace/history/GET_HISTORY')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
export class AddUrlToHistoryAction implements Action { export class AddUrlToHistoryAction implements Action {
type = HistoryActionTypes.ADD_TO_HISTORY; type = HistoryActionTypes.ADD_TO_HISTORY;
@@ -20,7 +20,7 @@ export class AddUrlToHistoryAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
export type HistoryAction export type HistoryAction
= AddUrlToHistoryAction; = AddUrlToHistoryAction;

View File

@@ -12,7 +12,7 @@ export const IndexActionTypes = {
REMOVE_BY_SUBSTRING: type('dspace/core/index/REMOVE_BY_SUBSTRING') REMOVE_BY_SUBSTRING: type('dspace/core/index/REMOVE_BY_SUBSTRING')
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An ngrx action to add a value to the index * An ngrx action to add a value to the index
*/ */
@@ -86,7 +86,7 @@ export class RemoveFromIndexBySubstringAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all HrefIndexActions * A type to encompass all HrefIndexActions

View File

@@ -23,7 +23,7 @@ export const JsonPatchOperationsActionTypes = {
DELETE_PENDING_JSON_PATCH_OPERATIONS: type('dspace/core/patch/DELETE_PENDING_JSON_PATCH_OPERATIONS'), DELETE_PENDING_JSON_PATCH_OPERATIONS: type('dspace/core/patch/DELETE_PENDING_JSON_PATCH_OPERATIONS'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An ngrx action to commit the current transaction * An ngrx action to commit the current transaction
@@ -269,7 +269,7 @@ export class DeletePendingJsonPatchOperationsAction implements Action {
type = JsonPatchOperationsActionTypes.DELETE_PENDING_JSON_PATCH_OPERATIONS; type = JsonPatchOperationsActionTypes.DELETE_PENDING_JSON_PATCH_OPERATIONS;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* Export a type alias of all actions in this action group * Export a type alias of all actions in this action group

View File

@@ -14,9 +14,9 @@ describe('JsonPatchOperationsEffects test suite', () => {
let jsonPatchOperationsEffects: JsonPatchOperationsEffects; let jsonPatchOperationsEffects: JsonPatchOperationsEffects;
let actions: Observable<any>; let actions: Observable<any>;
const store: Store<JsonPatchOperationsState> = jasmine.createSpyObj('store', { const store: Store<JsonPatchOperationsState> = jasmine.createSpyObj('store', {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
dispatch: {}, dispatch: {},
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
select: observableOf(true) select: observableOf(true)
}); });
const testJsonPatchResourceType = 'testResourceType'; const testJsonPatchResourceType = 'testResourceType';

View File

@@ -1,7 +1,7 @@
import { type } from '../../shared/ngrx/type'; import { type } from '../../shared/ngrx/type';
import { Action } from '@ngrx/store'; import { Action } from '@ngrx/store';
// tslint:disable:max-classes-per-file /* eslint-disable max-classes-per-file */
export const MetaTagTypes = { export const MetaTagTypes = {
ADD: type('dspace/meta-tag/ADD'), ADD: type('dspace/meta-tag/ADD'),
CLEAR: type('dspace/meta-tag/CLEAR') CLEAR: type('dspace/meta-tag/CLEAR')

View File

@@ -28,7 +28,7 @@ import { map } from 'rxjs/operators';
import { NoContent } from '../shared/NoContent.model'; import { NoContent } from '../shared/NoContent.model';
import { getFirstCompletedRemoteData } from '../shared/operators'; import { getFirstCompletedRemoteData } from '../shared/operators';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* A private DataService implementation to delegate specific methods to. * A private DataService implementation to delegate specific methods to.
@@ -222,4 +222,4 @@ export class ResourcePolicyService {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -8,7 +8,7 @@ export const RouterActionTypes = {
ROUTE_UPDATE: type('dspace/core/router/ROUTE_UPDATE'), ROUTE_UPDATE: type('dspace/core/router/ROUTE_UPDATE'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An ngrx action to be fired when the route is updated * An ngrx action to be fired when the route is updated
* Note that, contrary to the router-store.ROUTER_NAVIGATION action, * Note that, contrary to the router-store.ROUTER_NAVIGATION action,
@@ -19,4 +19,4 @@ export class RouteUpdateAction implements Action {
type = RouterActionTypes.ROUTE_UPDATE; type = RouterActionTypes.ROUTE_UPDATE;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -15,7 +15,7 @@ export const RouteActionTypes = {
RESET: type('dspace/core/route/RESET'), RESET: type('dspace/core/route/RESET'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An ngrx action to set the query parameters * An ngrx action to set the query parameters
*/ */
@@ -151,7 +151,7 @@ export class ResetRouteStateAction implements Action {
type = RouteActionTypes.RESET; type = RouteActionTypes.RESET;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all RouteActions * A type to encompass all RouteActions

View File

@@ -3,6 +3,6 @@
* more details: * more details:
* https://github.com/Microsoft/TypeScript/issues/204#issuecomment-257722306 * https://github.com/Microsoft/TypeScript/issues/204#issuecomment-257722306
*/ */
/* tslint:disable:interface-over-type-literal */ /* eslint-disable @typescript-eslint/consistent-type-definitions */
export type GenericConstructor<T> = new (...args: any[]) => T ; export type GenericConstructor<T> = new (...args: any[]) => T ;
/* tslint:enable:interface-over-type-literal */ /* eslint-enable @typescript-eslint/consistent-type-definitions */

View File

@@ -1,7 +1,7 @@
import { v4 as uuidv4 } from 'uuid'; import { v4 as uuidv4 } from 'uuid';
import { autoserialize, Serialize, Deserialize } from 'cerialize'; import { autoserialize, Serialize, Deserialize } from 'cerialize';
import { hasValue } from '../../shared/empty.util'; import { hasValue } from '../../shared/empty.util';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
export const VIRTUAL_METADATA_PREFIX = 'virtual::'; export const VIRTUAL_METADATA_PREFIX = 'virtual::';
@@ -138,4 +138,4 @@ export const MetadataMapSerializer = {
return metadataMap; return metadataMap;
} }
}; };
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -20,7 +20,7 @@ import {
createSuccessfulRemoteDataObject createSuccessfulRemoteDataObject
} from '../../shared/remote-data.utils'; } from '../../shared/remote-data.utils';
// tslint:disable:no-shadowed-variable /* eslint-disable @typescript-eslint/no-shadow */
describe('Core Module - RxJS Operators', () => { describe('Core Module - RxJS Operators', () => {
let scheduler: TestScheduler; let scheduler: TestScheduler;

View File

@@ -30,14 +30,14 @@ describe('SearchFilterService', () => {
const value1 = 'random value'; const value1 = 'random value';
// const value2 = 'another value'; // const value2 = 'another value';
const store: Store<SearchFiltersState> = jasmine.createSpyObj('store', { const store: Store<SearchFiltersState> = jasmine.createSpyObj('store', {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
dispatch: {}, dispatch: {},
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
select: observableOf(true) select: observableOf(true)
}); });
const routeServiceStub: any = { const routeServiceStub: any = {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
hasQueryParamWithValue: (param: string, value: string) => { hasQueryParamWithValue: (param: string, value: string) => {
}, },
hasQueryParam: (param: string) => { hasQueryParam: (param: string) => {
@@ -56,7 +56,7 @@ describe('SearchFilterService', () => {
}, },
getRouteParameterValue: (param: string) => { getRouteParameterValue: (param: string) => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}; };
const activatedRoute: any = new ActivatedRouteStub(); const activatedRoute: any = new ActivatedRouteStub();
const searchServiceStub: any = { const searchServiceStub: any = {

View File

@@ -75,10 +75,10 @@ describe('SearchService', () => {
let routeService; let routeService;
const halService = { const halService = {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
getEndpoint: () => { getEndpoint: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}; };
@@ -170,10 +170,10 @@ describe('SearchService', () => {
beforeEach(() => { beforeEach(() => {
spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint)); spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint));
spyOn((searchService as any).rdb, 'buildFromHref').and.callThrough(); spyOn((searchService as any).rdb, 'buildFromHref').and.callThrough();
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
searchService.search(searchOptions).subscribe((t) => { searchService.search(searchOptions).subscribe((t) => {
}); // subscribe to make sure all methods are called }); // subscribe to make sure all methods are called
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}); });
it('should call getEndpoint on the halService', () => { it('should call getEndpoint on the halService', () => {
@@ -194,10 +194,10 @@ describe('SearchService', () => {
beforeEach(() => { beforeEach(() => {
spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint)); spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint));
spyOn((searchService as any).rdb, 'buildFromHref').and.callThrough(); spyOn((searchService as any).rdb, 'buildFromHref').and.callThrough();
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
searchService.getConfig(null).subscribe((t) => { searchService.getConfig(null).subscribe((t) => {
}); // subscribe to make sure all methods are called }); // subscribe to make sure all methods are called
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}); });
it('should call getEndpoint on the halService', () => { it('should call getEndpoint on the halService', () => {
@@ -219,10 +219,10 @@ describe('SearchService', () => {
const requestUrl = endPoint + '?scope=' + scope; const requestUrl = endPoint + '?scope=' + scope;
beforeEach(() => { beforeEach(() => {
spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint)); spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint));
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
searchService.getConfig(scope).subscribe((t) => { searchService.getConfig(scope).subscribe((t) => {
}); // subscribe to make sure all methods are called }); // subscribe to make sure all methods are called
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}); });
it('should call getEndpoint on the halService', () => { it('should call getEndpoint on the halService', () => {
@@ -243,10 +243,10 @@ describe('SearchService', () => {
beforeEach(() => { beforeEach(() => {
spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint)); spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint));
spyOn((searchService as any).rdb, 'buildFromHref').and.callThrough(); spyOn((searchService as any).rdb, 'buildFromHref').and.callThrough();
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
searchService.getSearchConfigurationFor(null).subscribe((t) => { searchService.getSearchConfigurationFor(null).subscribe((t) => {
}); // subscribe to make sure all methods are called }); // subscribe to make sure all methods are called
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}); });
it('should call getEndpoint on the halService', () => { it('should call getEndpoint on the halService', () => {
@@ -268,10 +268,10 @@ describe('SearchService', () => {
const requestUrl = endPoint + '?scope=' + scope; const requestUrl = endPoint + '?scope=' + scope;
beforeEach(() => { beforeEach(() => {
spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint)); spyOn((searchService as any).halService, 'getEndpoint').and.returnValue(observableOf(endPoint));
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
searchService.getSearchConfigurationFor(scope).subscribe((t) => { searchService.getSearchConfigurationFor(scope).subscribe((t) => {
}); // subscribe to make sure all methods are called }); // subscribe to make sure all methods are called
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}); });
it('should call getEndpoint on the halService', () => { it('should call getEndpoint on the halService', () => {

View File

@@ -44,7 +44,7 @@ import { NotificationsService } from '../../../shared/notifications/notification
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { DSOChangeAnalyzer } from '../../data/dso-change-analyzer.service'; import { DSOChangeAnalyzer } from '../../data/dso-change-analyzer.service';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* A class that lets us delegate some methods to DataService * A class that lets us delegate some methods to DataService
*/ */

View File

@@ -34,7 +34,7 @@ import { VocabularyOptions } from './models/vocabulary-options.model';
import { PageInfo } from '../../shared/page-info.model'; import { PageInfo } from '../../shared/page-info.model';
import { HrefOnlyDataService } from '../../data/href-only-data.service'; import { HrefOnlyDataService } from '../../data/href-only-data.service';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* A private DataService implementation to delegate specific methods to. * A private DataService implementation to delegate specific methods to.
@@ -386,4 +386,4 @@ export class VocabularyService {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -25,7 +25,7 @@ import { of } from 'rxjs';
const LINK_NAME = 'test'; const LINK_NAME = 'test';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
class TestTask extends TaskObject { class TestTask extends TaskObject {
} }
@@ -52,7 +52,7 @@ class DummyChangeAnalyzer implements ChangeAnalyzer<TestTask> {
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
describe('TasksService', () => { describe('TasksService', () => {
let scheduler: TestScheduler; let scheduler: TestScheduler;

View File

@@ -41,7 +41,7 @@ export function excludeFromEquals(object: any, propertyName: string): any {
excludedFromEquals.set(object.constructor, [...list, propertyName]); excludedFromEquals.set(object.constructor, [...list, propertyName]);
} }
// tslint:disable-next-line:ban-types // eslint-disable-next-line @typescript-eslint/ban-types
export function getExcludedFromEqualsFor(constructor: Function): string[] { export function getExcludedFromEqualsFor(constructor: Function): string[] {
return excludedFromEquals.get(constructor) || []; return excludedFromEquals.get(constructor) || [];
} }
@@ -64,7 +64,7 @@ export function fieldsForEquals(...fields: string[]): any {
}; };
} }
// tslint:disable-next-line:ban-types // eslint-disable-next-line @typescript-eslint/ban-types
export function getFieldsForEquals(constructor: Function, field: string): string[] { export function getFieldsForEquals(constructor: Function, field: string): string[] {
const fieldMap = fieldsForEqualsMap.get(constructor) || new Map(); const fieldMap = fieldsForEqualsMap.get(constructor) || new Map();
return fieldMap.get(field); return fieldMap.get(field);

View File

@@ -14,7 +14,7 @@ class Dog extends EquatableObject<Dog> {
public favouriteToy: { name: string, colour: string }; public favouriteToy: { name: string, colour: string };
} }
// tslint:disable-next-line:max-classes-per-file // eslint-disable-next-line max-classes-per-file
class Owner extends EquatableObject<Owner> { class Owner extends EquatableObject<Owner> {
@excludeFromEquals @excludeFromEquals
favouriteFood: string; favouriteFood: string;

View File

@@ -10,7 +10,7 @@ import { InputSuggestionsComponent } from '../../../../../../shared/input-sugges
{ {
provide: NG_VALUE_ACCESSOR, provide: NG_VALUE_ACCESSOR,
// Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151 // Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151
// tslint:disable-next-line:no-forward-ref // eslint-disable-next-line @angular-eslint/no-forward-ref
useExisting: forwardRef(() => OrgUnitInputSuggestionsComponent), useExisting: forwardRef(() => OrgUnitInputSuggestionsComponent),
multi: true multi: true
} }

View File

@@ -10,7 +10,7 @@ import { InputSuggestionsComponent } from '../../../../../../shared/input-sugges
{ {
provide: NG_VALUE_ACCESSOR, provide: NG_VALUE_ACCESSOR,
// Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151 // Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151
// tslint:disable-next-line:no-forward-ref // eslint-disable-next-line @angular-eslint/no-forward-ref
useExisting: forwardRef(() => PersonInputSuggestionsComponent), useExisting: forwardRef(() => PersonInputSuggestionsComponent),
multi: true multi: true
} }

View File

@@ -19,7 +19,7 @@ describe('ItemPageComponent', () => {
} }
} }
// tslint:disable-next-line:max-classes-per-file // eslint-disable-next-line max-classes-per-file
class AcceptNoneGuard implements CanActivate { class AcceptNoneGuard implements CanActivate {
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree { canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
console.log('BLA'); console.log('BLA');

View File

@@ -195,7 +195,7 @@ describe('ItemBitstreamsComponent', () => {
const event = { const event = {
fromIndex: 0, fromIndex: 0,
toIndex: 50, toIndex: 50,
// tslint:disable-next-line:no-empty // eslint-disable-next-line no-empty,@typescript-eslint/no-empty-function
finish: () => { finish: () => {
} }
}; };
@@ -210,7 +210,7 @@ describe('ItemBitstreamsComponent', () => {
comp.dropBitstream(bundle, { comp.dropBitstream(bundle, {
fromIndex: 0, fromIndex: 0,
toIndex: 50, toIndex: 50,
// tslint:disable-next-line:no-empty // eslint-disable-next-line no-empty, @typescript-eslint/no-empty-function
finish: () => { finish: () => {
done(); done();
} }

View File

@@ -84,18 +84,18 @@ describe('ItemCollectionMapperComponent', () => {
removeMappingFromCollection: () => createSuccessfulRemoteDataObject$({}), removeMappingFromCollection: () => createSuccessfulRemoteDataObject$({}),
getMappedCollectionsEndpoint: () => observableOf('rest/api/mappedCollectionsEndpoint'), getMappedCollectionsEndpoint: () => observableOf('rest/api/mappedCollectionsEndpoint'),
getMappedCollections: () => observableOf(mockCollectionsRD), getMappedCollections: () => observableOf(mockCollectionsRD),
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
clearMappedCollectionsRequests: () => {} clearMappedCollectionsRequests: () => {}
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}; };
const collectionDataServiceStub = { const collectionDataServiceStub = {
findAllByHref: () => observableOf(mockCollectionsRD) findAllByHref: () => observableOf(mockCollectionsRD)
}; };
const searchServiceStub = Object.assign(new SearchServiceStub(), { const searchServiceStub = Object.assign(new SearchServiceStub(), {
search: () => observableOf(mockCollectionsRD), search: () => observableOf(mockCollectionsRD),
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
clearDiscoveryRequests: () => {} clearDiscoveryRequests: () => {}
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}); });
const activatedRouteStub = { const activatedRouteStub = {
parent: { parent: {

View File

@@ -17,7 +17,7 @@ import { InputSuggestion } from '../../../../shared/input-suggestions/input-sugg
import { followLink } from '../../../../shared/utils/follow-link-config.model'; import { followLink } from '../../../../shared/utils/follow-link-config.model';
@Component({ @Component({
// tslint:disable-next-line:component-selector // eslint-disable-next-line @angular-eslint/component-selector
selector: '[ds-edit-in-place-field]', selector: '[ds-edit-in-place-field]',
styleUrls: ['./edit-in-place-field.component.scss'], styleUrls: ['./edit-in-place-field.component.scss'],
templateUrl: './edit-in-place-field.component.html', templateUrl: './edit-in-place-field.component.html',

View File

@@ -15,7 +15,7 @@ import { hasValue, isNotEmpty } from '../../../../shared/empty.util';
import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'; import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
@Component({ @Component({
// tslint:disable-next-line:component-selector // eslint-disable-next-line @angular-eslint/component-selector
selector: 'ds-edit-relationship', selector: 'ds-edit-relationship',
styleUrls: ['./edit-relationship.component.scss'], styleUrls: ['./edit-relationship.component.scss'],
templateUrl: './edit-relationship.component.html', templateUrl: './edit-relationship.component.html',

View File

@@ -3,7 +3,7 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { MetadataFieldWrapperComponent } from './metadata-field-wrapper.component'; import { MetadataFieldWrapperComponent } from './metadata-field-wrapper.component';
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
@Component({ @Component({
selector: 'ds-component-without-content', selector: 'ds-component-without-content',
template: '<ds-metadata-field-wrapper [hideIfNoTextContent]="hideIfNoTextContent" [label]="\'test label\'">\n' + template: '<ds-metadata-field-wrapper [hideIfNoTextContent]="hideIfNoTextContent" [label]="\'test label\'">\n' +
@@ -34,7 +34,7 @@ class TextContentComponent {
@Input() hideIfNoTextContent = true; @Input() hideIfNoTextContent = true;
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
describe('MetadataFieldWrapperComponent', () => { describe('MetadataFieldWrapperComponent', () => {
let component: MetadataFieldWrapperComponent; let component: MetadataFieldWrapperComponent;

View File

@@ -41,10 +41,10 @@ const mockWithdrawnItem: Item = Object.assign(new Item(), {
}); });
const metadataServiceStub = { const metadataServiceStub = {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
processRemoteData: () => { processRemoteData: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}; };
describe('FullItemPageComponent', () => { describe('FullItemPageComponent', () => {

View File

@@ -43,10 +43,10 @@ describe('ItemPageComponent', () => {
let authorizationDataService: AuthorizationDataService; let authorizationDataService: AuthorizationDataService;
const mockMetadataService = { const mockMetadataService = {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
processRemoteData: () => { processRemoteData: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}; };
const mockRoute = Object.assign(new ActivatedRouteStub(), { const mockRoute = Object.assign(new ActivatedRouteStub(), {
data: observableOf({ dso: createSuccessfulRemoteDataObject(mockItem) }) data: observableOf({ dso: createSuccessfulRemoteDataObject(mockItem) })

View File

@@ -17,9 +17,9 @@ describe('LoginPageComponent', () => {
}); });
const store: Store<LoginPageComponent> = jasmine.createSpyObj('store', { const store: Store<LoginPageComponent> = jasmine.createSpyObj('store', {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
dispatch: {}, dispatch: {},
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
select: observableOf(true) select: observableOf(true)
}); });

View File

@@ -94,7 +94,7 @@ describe('CollectionSelectorComponent', () => {
}) })
]; ];
// tslint:disable-next-line: max-classes-per-file // eslint-disable-next-line max-classes-per-file
const collectionDataServiceMock = { const collectionDataServiceMock = {
getAuthorizedCollection(query: string, options: FindListOptions = {}, ...linksToFollow: FollowLinkConfig<Collection>[]): Observable<RemoteData<PaginatedList<Collection>>> { getAuthorizedCollection(query: string, options: FindListOptions = {}, ...linksToFollow: FollowLinkConfig<Collection>[]): Observable<RemoteData<PaginatedList<Collection>>> {
return hot( 'a|', { return hot( 'a|', {

View File

@@ -11,7 +11,7 @@ import { rendersSectionForMenu } from '../../shared/menu/menu-section.decorator'
* Represents an expandable section in the navbar * Represents an expandable section in the navbar
*/ */
@Component({ @Component({
/* tslint:disable:component-selector */ /* eslint-disable @angular-eslint/component-selector */
selector: 'li[ds-expandable-navbar-section]', selector: 'li[ds-expandable-navbar-section]',
templateUrl: './expandable-navbar-section.component.html', templateUrl: './expandable-navbar-section.component.html',
styleUrls: ['./expandable-navbar-section.component.scss'], styleUrls: ['./expandable-navbar-section.component.scss'],

View File

@@ -8,7 +8,7 @@ import { rendersSectionForMenu } from '../../shared/menu/menu-section.decorator'
* Represents a non-expandable section in the navbar * Represents a non-expandable section in the navbar
*/ */
@Component({ @Component({
/* tslint:disable:component-selector */ /* eslint-disable @angular-eslint/component-selector */
selector: 'li[ds-navbar-section]', selector: 'li[ds-navbar-section]',
templateUrl: './navbar-section.component.html', templateUrl: './navbar-section.component.html',
styleUrls: ['./navbar-section.component.scss'] styleUrls: ['./navbar-section.component.scss']

View File

@@ -62,9 +62,9 @@ describe('ComColFormComponent', () => {
}); });
const notificationsService = new NotificationsServiceStub(); const notificationsService = new NotificationsServiceStub();
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
const locationStub = jasmine.createSpyObj('location', ['back']); const locationStub = jasmine.createSpyObj('location', ['back']);
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
const requestServiceStub = jasmine.createSpyObj('requestService', { const requestServiceStub = jasmine.createSpyObj('requestService', {
removeByHrefSubstring: {} removeByHrefSubstring: {}

View File

@@ -140,10 +140,10 @@ describe('CreateComColPageComponent', () => {
url: '' url: ''
}, },
queue: [], queue: [],
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
uploadAll: () => { uploadAll: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
} }
}; };
}); });
@@ -185,10 +185,10 @@ describe('CreateComColPageComponent', () => {
queue: [ queue: [
{} {}
], ],
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
uploadAll: () => { uploadAll: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
} }
}; };
}); });

View File

@@ -144,10 +144,10 @@ describe('DeleteComColPageComponent', () => {
url: '' url: ''
}, },
queue: [], queue: [],
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
uploadAll: () => { uploadAll: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
} }
}; };
}); });

View File

@@ -113,10 +113,10 @@ describe('ComColMetadataComponent', () => {
url: '' url: ''
}, },
queue: [], queue: [],
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
uploadAll: () => { uploadAll: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}, },
deleteLogo: false, deleteLogo: false,
}; };
@@ -166,10 +166,10 @@ describe('ComColMetadataComponent', () => {
queue: [ queue: [
{} {}
], ],
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
uploadAll: () => { uploadAll: () => {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
} }
}; };
}); });

View File

@@ -9,7 +9,7 @@ import { TestScheduler } from 'rxjs/testing';
import { By } from '@angular/platform-browser'; import { By } from '@angular/platform-browser';
import { createPaginatedList } from '../testing/utils.test'; import { createPaginatedList } from '../testing/utils.test';
// tslint:disable-next-line:pipe-prefix // eslint-disable-next-line @angular-eslint/pipe-prefix
@Pipe({ name: 'translate' }) @Pipe({ name: 'translate' })
class MockTranslatePipe implements PipeTransform { class MockTranslatePipe implements PipeTransform {
transform(value: string): string { transform(value: string): string {

View File

@@ -224,7 +224,7 @@ describe('DsDynamicFormControlContainerComponent test suite', () => {
const ngZone = TestBed.inject(NgZone); const ngZone = TestBed.inject(NgZone);
// tslint:disable-next-line:ban-types // eslint-disable-next-line @typescript-eslint/ban-types
spyOn(ngZone, 'runOutsideAngular').and.callFake((fn: Function) => fn()); spyOn(ngZone, 'runOutsideAngular').and.callFake((fn: Function) => fn());
component = fixture.componentInstance; component = fixture.componentInstance;
debugElement = fixture.debugElement; debugElement = fixture.debugElement;

View File

@@ -192,7 +192,7 @@ export function dsDynamicFormControlMapFn(model: DynamicFormControlModel): Type<
}) })
export class DsDynamicFormControlContainerComponent extends DynamicFormControlContainerComponent implements OnInit, OnChanges, OnDestroy { export class DsDynamicFormControlContainerComponent extends DynamicFormControlContainerComponent implements OnInit, OnChanges, OnDestroy {
@ContentChildren(DynamicTemplateDirective) contentTemplateList: QueryList<DynamicTemplateDirective>; @ContentChildren(DynamicTemplateDirective) contentTemplateList: QueryList<DynamicTemplateDirective>;
// tslint:disable-next-line:no-input-rename // eslint-disable-next-line @angular-eslint/no-input-rename
@Input('templates') inputTemplateList: QueryList<DynamicTemplateDirective>; @Input('templates') inputTemplateList: QueryList<DynamicTemplateDirective>;
@Input() formId: string; @Input() formId: string;
@@ -218,12 +218,12 @@ export class DsDynamicFormControlContainerComponent extends DynamicFormControlCo
*/ */
private subs: Subscription[] = []; private subs: Subscription[] = [];
/* tslint:disable:no-output-rename */ /* eslint-disable @angular-eslint/no-output-rename */
@Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
/* tslint:enable:no-output-rename */ /* eslint-enable @angular-eslint/no-output-rename */
@ViewChild('componentViewContainer', { read: ViewContainerRef, static: true }) componentViewContainerRef: ViewContainerRef; @ViewChild('componentViewContainer', { read: ViewContainerRef, static: true }) componentViewContainerRef: ViewContainerRef;
private showErrorMessagesPreviousStage: boolean; private showErrorMessagesPreviousStage: boolean;

View File

@@ -31,11 +31,11 @@ export class DsDynamicFormComponent extends DynamicFormComponent {
@Input() formModel: DynamicFormControlModel[]; @Input() formModel: DynamicFormControlModel[];
@Input() formLayout: DynamicFormLayout; @Input() formLayout: DynamicFormLayout;
/* tslint:disable:no-output-rename */ /* eslint-disable @angular-eslint/no-output-rename */
@Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
/* tslint:enable:no-output-rename */ /* eslint-enable @angular-eslint/no-output-rename */
@Output() ngbEvent: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output() ngbEvent: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();

View File

@@ -22,7 +22,7 @@ import { RemoveRelationshipAction } from '../relation-lookup-modal/relationship.
import { SubmissionService } from '../../../../../submission/submission.service'; import { SubmissionService } from '../../../../../submission/submission.service';
import { SubmissionObjectEntry } from '../../../../../submission/objects/submission-objects.reducer'; import { SubmissionObjectEntry } from '../../../../../submission/objects/submission-objects.reducer';
// tslint:disable:max-classes-per-file /* eslint-disable max-classes-per-file */
/** /**
* Abstract class that defines objects that can be reordered * Abstract class that defines objects that can be reordered
*/ */
@@ -218,4 +218,4 @@ export class ExistingMetadataListElementComponent implements OnInit, OnChanges,
} }
// tslint:enable:max-classes-per-file /* eslint-enable max-classes-per-file */

View File

@@ -14,7 +14,7 @@ import { ViewMode } from '../../../../../core/shared/view-mode.model';
import { ReorderableRelationship } from '../existing-metadata-list-element/existing-metadata-list-element.component'; import { ReorderableRelationship } from '../existing-metadata-list-element/existing-metadata-list-element.component';
import { SubmissionService } from '../../../../../submission/submission.service'; import { SubmissionService } from '../../../../../submission/submission.service';
// tslint:disable:max-classes-per-file /* eslint-disable max-classes-per-file */
/** /**
* Abstract class that defines objects that can be reordered * Abstract class that defines objects that can be reordered
*/ */
@@ -120,4 +120,4 @@ export class ExistingRelationListElementComponent implements OnInit, OnChanges,
} }
// tslint:enable:max-classes-per-file /* eslint-enable max-classes-per-file */

View File

@@ -28,13 +28,13 @@ export class DsDynamicFormArrayComponent extends DynamicFormArrayComponent {
@Input() model: DynamicRowArrayModel;// DynamicRow? @Input() model: DynamicRowArrayModel;// DynamicRow?
@Input() templates: QueryList<DynamicTemplateDirective> | undefined; @Input() templates: QueryList<DynamicTemplateDirective> | undefined;
/* tslint:disable:no-output-rename */ /* eslint-disable @angular-eslint/no-output-rename */
@Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlCustomEvent> = new EventEmitter(); @Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlCustomEvent> = new EventEmitter();
/* tslint:enable:no-output-rename */ /* eslint-enable @angular-eslint/no-output-rename */
constructor(protected layoutService: DynamicFormLayoutService, constructor(protected layoutService: DynamicFormLayoutService,
protected validationService: DynamicFormValidationService, protected validationService: DynamicFormValidationService,

View File

@@ -24,12 +24,12 @@ export class DsDynamicFormGroupComponent extends DynamicFormControlComponent {
@Input() model: DynamicFormGroupModel; @Input() model: DynamicFormGroupModel;
@Input() templates: QueryList<DynamicTemplateDirective> | DynamicTemplateDirective[] | undefined; @Input() templates: QueryList<DynamicTemplateDirective> | DynamicTemplateDirective[] | undefined;
/* tslint:disable:no-output-rename */ /* eslint-disable @angular-eslint/no-output-rename */
@Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlCustomEvent> = new EventEmitter(); @Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlCustomEvent> = new EventEmitter();
/* tslint:enable:no-output-rename */ /* eslint-enable @angular-eslint/no-output-rename */
constructor(protected layoutService: DynamicFormLayoutService, constructor(protected layoutService: DynamicFormLayoutService,
protected validationService: DynamicFormValidationService) { protected validationService: DynamicFormValidationService) {

View File

@@ -34,7 +34,7 @@ export let ONEBOX_TEST_GROUP;
export let ONEBOX_TEST_MODEL_CONFIG; export let ONEBOX_TEST_MODEL_CONFIG;
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
// Mock class for NgbModalRef // Mock class for NgbModalRef
export class MockNgbModalRef { export class MockNgbModalRef {
@@ -463,4 +463,4 @@ class TestComponent {
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

View File

@@ -23,13 +23,13 @@ import {
} from '../../../../../testing/dynamic-form-mock-services'; } from '../../../../../testing/dynamic-form-mock-services';
function createKeyUpEvent(key: number) { function createKeyUpEvent(key: number) {
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
const event = { const event = {
keyCode: key, preventDefault: () => { keyCode: key, preventDefault: () => {
}, stopPropagation: () => { }, stopPropagation: () => {
} }
}; };
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
spyOn(event, 'preventDefault'); spyOn(event, 'preventDefault');
spyOn(event, 'stopPropagation'); spyOn(event, 'stopPropagation');
return event; return event;

View File

@@ -123,7 +123,7 @@ describe('DsDynamicLookupRelationModalComponent', () => {
{ provide: RemoteDataBuildService, useValue: rdbService }, { provide: RemoteDataBuildService, useValue: rdbService },
{ {
provide: Store, useValue: { provide: Store, useValue: {
// tslint:disable-next-line:no-empty // eslint-disable-next-line no-empty, @typescript-eslint/no-empty-function
dispatch: () => { dispatch: () => {
} }
} }

View File

@@ -302,7 +302,7 @@ export class DsDynamicLookupRelationModalComponent implements OnInit, OnDestroy
Object.values(this.subMap).forEach((subscription) => subscription.unsubscribe()); Object.values(this.subMap).forEach((subscription) => subscription.unsubscribe());
} }
/* tslint:disable:no-empty */ /* eslint-disable no-empty,@typescript-eslint/no-empty-function */
/** /**
* Called when discard button is clicked, emit discard event to parent to conclude functionality * Called when discard button is clicked, emit discard event to parent to conclude functionality
*/ */
@@ -314,6 +314,6 @@ export class DsDynamicLookupRelationModalComponent implements OnInit, OnDestroy
*/ */
submitEv(): void { submitEv(): void {
} }
/* tslint:enable:no-empty */ /* eslint-enable no-empty, @typescript-eslint/no-empty-function */
} }

View File

@@ -9,7 +9,7 @@ export const NameVariantActionTypes = {
REMOVE_NAME_VARIANT: type('dspace/name-variant/REMOVE_NAME_VARIANT'), REMOVE_NAME_VARIANT: type('dspace/name-variant/REMOVE_NAME_VARIANT'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* Abstract class for actions that happen to name variants * Abstract class for actions that happen to name variants
*/ */
@@ -51,7 +51,7 @@ export class RemoveNameVariantAction extends NameVariantListAction {
super(listID, itemID); super(listID, itemID);
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all RelationshipActions * A type to encompass all RelationshipActions

View File

@@ -13,7 +13,7 @@ export const RelationshipActionTypes = {
UPDATE_RELATIONSHIP: type('dspace/relationship/UPDATE_RELATIONSHIP'), UPDATE_RELATIONSHIP: type('dspace/relationship/UPDATE_RELATIONSHIP'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
/** /**
* An ngrx action to create a new relationship * An ngrx action to create a new relationship
*/ */
@@ -132,7 +132,7 @@ export class RemoveRelationshipAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* A type to encompass all RelationshipActions * A type to encompass all RelationshipActions

View File

@@ -21,7 +21,7 @@ export const FormActionTypes = {
FORM_CLEAR_ERRORS: type('dspace/form/FORM_CLEAR_ERRORS'), FORM_CLEAR_ERRORS: type('dspace/form/FORM_CLEAR_ERRORS'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
export class FormInitAction implements Action { export class FormInitAction implements Action {
type = FormActionTypes.FORM_INIT; type = FormActionTypes.FORM_INIT;
payload: { payload: {
@@ -160,7 +160,7 @@ export class FormClearErrorsAction implements Action {
} }
} }
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */
/** /**
* Export a type alias of all actions in this action group * Export a type alias of all actions in this action group

View File

@@ -71,12 +71,12 @@ export class FormComponent implements OnDestroy, OnInit {
@Input() formGroup: FormGroup; @Input() formGroup: FormGroup;
@Input() formLayout = null as DynamicFormLayout; @Input() formLayout = null as DynamicFormLayout;
/* tslint:disable:no-output-rename */ /* eslint-disable @angular-eslint/no-output-rename */
@Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfBlur') blur: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfChange') change: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('dfFocus') focus: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output('ngbEvent') customEvent: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
/* tslint:enable:no-output-rename */ /* eslint-enable @angular-eslint/no-output-rename */
@Output() addArrayItem: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output() addArrayItem: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();
@Output() removeArrayItem: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>(); @Output() removeArrayItem: EventEmitter<DynamicFormControlEvent> = new EventEmitter<DynamicFormControlEvent>();

View File

@@ -14,7 +14,7 @@ import { hasValue } from '../../empty.util';
{ {
provide: NG_VALUE_ACCESSOR, provide: NG_VALUE_ACCESSOR,
// Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151 // Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151
// tslint:disable-next-line:no-forward-ref // eslint-disable-next-line @angular-eslint/no-forward-ref
useExisting: forwardRef(() => DsoInputSuggestionsComponent), useExisting: forwardRef(() => DsoInputSuggestionsComponent),
multi: true multi: true
} }

View File

@@ -11,7 +11,7 @@ import { InputSuggestion } from '../input-suggestions.model';
{ {
provide: NG_VALUE_ACCESSOR, provide: NG_VALUE_ACCESSOR,
// Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151 // Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151
// tslint:disable-next-line:no-forward-ref // eslint-disable-next-line @angular-eslint/no-forward-ref
useExisting: forwardRef(() => FilterInputSuggestionsComponent), useExisting: forwardRef(() => FilterInputSuggestionsComponent),
multi: true multi: true
} }

View File

@@ -14,7 +14,7 @@ import { InputSuggestion } from '../input-suggestions.model';
{ {
provide: NG_VALUE_ACCESSOR, provide: NG_VALUE_ACCESSOR,
// Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151 // Usage of forwardRef necessary https://github.com/angular/angular.io/issues/1151
// tslint:disable-next-line:no-forward-ref // eslint-disable-next-line @angular-eslint/no-forward-ref
useExisting: forwardRef(() => ValidationSuggestionsComponent), useExisting: forwardRef(() => ValidationSuggestionsComponent),
multi: true multi: true
} }

View File

@@ -14,9 +14,9 @@ import { LocaleService } from '../../core/locale/locale.service';
// The translation module is instantiated with these bogus messages that we aren't using anyway. // The translation module is instantiated with these bogus messages that we aren't using anyway.
// Double quotes are mandatory in JSON, so de-activating the tslint rule checking for single quotes here. // Double quotes are mandatory in JSON, so de-activating the tslint rule checking for single quotes here.
/* tslint:disable:quotemark */ /* eslint-disable @typescript-eslint/quotes */
// JSON for the language files has double quotes around all literals // JSON for the language files has double quotes around all literals
/* tslint:disable:object-literal-key-quotes */ /* eslint-disable quote-props */
class CustomLoader implements TranslateLoader { class CustomLoader implements TranslateLoader {
getTranslation(lang: string): Observable<any> { getTranslation(lang: string): Observable<any> {
return of({ return of({
@@ -29,8 +29,8 @@ class CustomLoader implements TranslateLoader {
} }
} }
/* tslint:enable:quotemark */ /* eslint-enable @typescript-eslint/quotes */
/* tslint:enable:object-literal-key-quotes */ /* eslint-enable quote-props */
let localService: any; let localService: any;

View File

@@ -28,7 +28,7 @@ export const MenuActionTypes = {
TOGGLE_ACTIVE_SECTION: type('dspace/menu-section/TOGGLE_ACTIVE_SECTION'), TOGGLE_ACTIVE_SECTION: type('dspace/menu-section/TOGGLE_ACTIVE_SECTION'),
}; };
/* tslint:disable:max-classes-per-file */ /* eslint-disable max-classes-per-file */
// MENU STATE ACTIONS // MENU STATE ACTIONS
/** /**
@@ -225,4 +225,4 @@ export type MenuAction =
| ToggleActiveMenuSectionAction | ToggleActiveMenuSectionAction
| CollapseMenuPreviewAction | CollapseMenuPreviewAction
| ExpandMenuPreviewAction; | ExpandMenuPreviewAction;
/* tslint:enable:max-classes-per-file */ /* eslint-enable max-classes-per-file */

Some files were not shown because too many files have changed in this diff Show More