update tslint -> eslint

This commit is contained in:
2021-05-21 20:17:26 +02:00
parent 80260df71f
commit a195fafa6b
252 changed files with 3080 additions and 2420 deletions

View File

@@ -6,11 +6,11 @@ describe('PresentationService', () => {
let service: PresentationService;
beforeEach(() => {
TestBed.configureTestingModule({});
void TestBed.configureTestingModule({});
service = TestBed.inject(PresentationService);
});
it('should be created', () => {
expect(service).toBeTruthy();
void expect(service).toBeTruthy();
});
});

View File

@@ -1,10 +1,6 @@
import {Injectable} from '@angular/core';
@Injectable({
providedIn: 'root'
providedIn: 'root',
})
export class PresentationService {
constructor() {
}
}
export class PresentationService {}