From 42e514d82c6971218608e8d07519d6d537a7cc2d Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 8 Jun 2018 16:50:54 -0700 Subject: [PATCH] ember: Fix no-unnecessary-class error (#26392) --- types/ember/index.d.ts | 2 +- types/ember/tslint.json | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/types/ember/index.d.ts b/types/ember/index.d.ts index 91c45b94e7..56a0879ae5 100755 --- a/types/ember/index.d.ts +++ b/types/ember/index.d.ts @@ -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; diff --git a/types/ember/tslint.json b/types/ember/tslint.json index 7069614893..f77f8d2ed8 100755 --- a/types/ember/tslint.json +++ b/types/ember/tslint.json @@ -24,8 +24,6 @@ "only-arrow-functions": false, "no-submodule-imports": false, - "no-unnecessary-class": false, - // false positives "unified-signatures": false }