chore: disable tslint rules

This commit is contained in:
Benjamin Lim
2017-01-15 23:51:16 +08:00
parent 73e0c1cae3
commit a1c40dc709
+2
View File
@@ -363,6 +363,7 @@ declare namespace webpack {
}
type ConditionSpec = TestConditionSpec | OrConditionSpec | AndConditionSpec | NotConditionSpec;
// tslint:disable-next-line:no-empty-interface
interface ConditionArray extends Array<Condition> {}
type Condition = string | RegExp | ((absPath: string) => boolean) | ConditionSpec | ConditionArray;
@@ -623,6 +624,7 @@ declare namespace webpack {
}
interface PrefetchPluginStatic {
// tslint:disable-next-line:unified-signatures
new (context: any, request: any): Plugin;
new (request: any): Plugin;
}