fix/ ng lint with eslint

This commit is contained in:
Maxime GRIS
2020-06-20 19:48:08 +02:00
parent 21f7401740
commit 92d7419bc1
14 changed files with 109 additions and 55 deletions

View File

@@ -8,9 +8,9 @@ describe('PageNotFoundComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ PageNotFoundComponent ]
declarations: [PageNotFoundComponent]
})
.compileComponents();
.compileComponents();
}));
beforeEach(() => {

View File

@@ -4,5 +4,5 @@ import { Directive } from '@angular/core';
selector: 'webview'
})
export class WebviewDirective {
constructor() {}
constructor() { }
}