permissive eslint rules to remove linter warnings
This commit is contained in:
@@ -7,10 +7,8 @@ import { Component, OnInit } from '@angular/core';
|
||||
})
|
||||
export class HomeComponent implements OnInit {
|
||||
|
||||
/* eslint "no-empty-function":0, "@typescript-eslint/no-empty-function": 0 */
|
||||
constructor() { }
|
||||
|
||||
/* eslint "no-empty-function":0, "@typescript-eslint/no-empty-function": 0 */
|
||||
ngOnInit(): void { }
|
||||
|
||||
}
|
||||
|
||||
@@ -6,9 +6,7 @@ import { Component, OnInit } from '@angular/core';
|
||||
styleUrls: ['./page-not-found.component.scss']
|
||||
})
|
||||
export class PageNotFoundComponent implements OnInit {
|
||||
/* eslint "no-empty-function":0, "@typescript-eslint/no-empty-function": 0 */
|
||||
constructor() {}
|
||||
|
||||
/* eslint "no-empty-function":0, "@typescript-eslint/no-empty-function": 0 */
|
||||
ngOnInit(): void {}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,5 @@ import { Directive } from '@angular/core';
|
||||
selector: 'webview'
|
||||
})
|
||||
export class WebviewDirective {
|
||||
/* eslint "no-empty-function":0, "@typescript-eslint/no-empty-function": 0 */
|
||||
constructor() {}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,6 @@ import {
|
||||
platformBrowserDynamicTesting
|
||||
} from '@angular/platform-browser-dynamic/testing';
|
||||
|
||||
/* eslint "@typescript-eslint/no-explicit-any":0 */
|
||||
declare const require: any;
|
||||
|
||||
// First, initialize the Angular testing environment.
|
||||
|
||||
Reference in New Issue
Block a user