diff --git a/etc/rules/Rule.ts b/etc/rules/Rule.ts index 43a7df63b7..743f98a584 100644 --- a/etc/rules/Rule.ts +++ b/etc/rules/Rule.ts @@ -5,6 +5,8 @@ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +// tslint:disable-next-line: no-global-tslint-disable +// tslint:disable: no-implicit-dependencies import * as Lint from 'tslint'; import * as ts from 'typescript'; diff --git a/etc/rules/defocusRule.ts b/etc/rules/defocusRule.ts index 0634596fa2..1b7871cc0d 100644 --- a/etc/rules/defocusRule.ts +++ b/etc/rules/defocusRule.ts @@ -12,6 +12,8 @@ * MIT - https://github.com/Sergiioo/tslint-defocus/blob/master/LICENSE */ +// tslint:disable-next-line: no-global-tslint-disable +// tslint:disable: no-implicit-dependencies import * as Lint from 'tslint'; import * as ts from 'typescript'; diff --git a/etc/rules/importGroupsRule.ts b/etc/rules/importGroupsRule.ts index c53fcba8c7..684fafbf47 100644 --- a/etc/rules/importGroupsRule.ts +++ b/etc/rules/importGroupsRule.ts @@ -5,6 +5,8 @@ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +// tslint:disable-next-line: no-global-tslint-disable +// tslint:disable: no-implicit-dependencies import * as Lint from 'tslint'; import * as ts from 'typescript'; diff --git a/etc/rules/noGlobalTslintDisableRule.ts b/etc/rules/noGlobalTslintDisableRule.ts index fea185ec79..1e136b5486 100644 --- a/etc/rules/noGlobalTslintDisableRule.ts +++ b/etc/rules/noGlobalTslintDisableRule.ts @@ -5,6 +5,8 @@ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +// tslint:disable-next-line: no-global-tslint-disable +// tslint:disable: no-implicit-dependencies import * as path from 'path'; import * as Lint from 'tslint'; import * as ts from 'typescript'; diff --git a/etc/rules/singleEofLineRule.ts b/etc/rules/singleEofLineRule.ts index b2882e43ff..36026e7bae 100644 --- a/etc/rules/singleEofLineRule.ts +++ b/etc/rules/singleEofLineRule.ts @@ -5,6 +5,8 @@ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +// tslint:disable-next-line: no-global-tslint-disable +// tslint:disable: no-implicit-dependencies import * as Lint from 'tslint'; import * as ts from 'typescript'; diff --git a/lib/packages.ts b/lib/packages.ts index 1d56e34212..c45a298fdd 100644 --- a/lib/packages.ts +++ b/lib/packages.ts @@ -5,7 +5,8 @@ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -// tslint:disable-next-line:no-implicit-dependencies +// tslint:disable-next-line: no-global-tslint-disable +// tslint:disable: no-implicit-dependencies import { JsonObject } from '@angular-devkit/core'; import { execSync } from 'child_process'; import * as fs from 'fs'; diff --git a/scripts/publish-docs.ts b/scripts/publish-docs.ts index 4dbd5ca455..d9555ed424 100644 --- a/scripts/publish-docs.ts +++ b/scripts/publish-docs.ts @@ -11,6 +11,7 @@ import * as fs from 'fs'; import * as path from 'path'; import { packages } from '../lib/packages'; +// tslint:disable: no-implicit-dependencies const temp = require('temp'); function die(message = 'Unknown error.') {