@typescript-eslint/triple-slash-reference

This commit is contained in:
Alexander T 2019-07-19 10:30:40 +03:00
parent 36a6028d56
commit 949770a4fe
3 changed files with 2 additions and 5 deletions

View File

@ -42,7 +42,6 @@
"@typescript-eslint/no-object-literal-type-assertion": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-this-alias": "error",
"@typescript-eslint/no-triple-slash-reference": "off",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-use-before-define": "off",
@ -53,6 +52,7 @@
"@typescript-eslint/prefer-namespace-keyword": "error",
"semi": "off",
"@typescript-eslint/semi": "error",
"@typescript-eslint/triple-slash-reference": "error",
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unified-signatures": "error",

View File

@ -1 +0,0 @@
/// <reference path="lib.es5.d.ts" />

View File

@ -1,5 +1,3 @@
/// <reference path="./host.ts" />
/// <reference path="./worker.ts" />
namespace Harness.Parallel {
export interface RunnerTask {
runner: TestRunnerKind;
@ -87,4 +85,4 @@ namespace Harness.Parallel {
global.it.skip = global.xit = global.xspecify = ts.noop as Mocha.PendingTestFunction;
global.it.only = ts.noop as Mocha.ExclusiveTestFunction;
}
}
}