ember: Fix no-unnecessary-class error (#26392)

This commit is contained in:
Andy
2018-06-08 16:50:54 -07:00
committed by GitHub
parent 14e2a2af5d
commit 42e514d82c
2 changed files with 1 additions and 3 deletions

View File

@@ -2368,7 +2368,7 @@ declare module 'ember' {
function Exception(message: string): void;
class SafeString {
constructor(str: string);
static toString(): string;
toString(): string;
}
function parse(string: string): any;
function print(ast: any): void;

View File

@@ -24,8 +24,6 @@
"only-arrow-functions": false,
"no-submodule-imports": false,
"no-unnecessary-class": false,
// false positives
"unified-signatures": false
}