diff --git a/package.json b/package.json index 8a552b5bf..00cbe4a2c 100644 --- a/package.json +++ b/package.json @@ -641,6 +641,7 @@ "gulp": "^4.0.2", "mocha": "^8.2.1", "recursive-readdir": "^2.2.2", + "rimraf": "3.0.2", "shelljs": "^0.8.5", "source-map-support": "^0.5.12", "ts-node": "^8.10.2", @@ -660,7 +661,6 @@ "moment": "^2.29.3", "nuget": "^2.0.2", "opn": "^5.5.0", - "rimraf": "2.6.3", "strip-json-comments": "^3.1.1", "vscode-azureextensionui": "^0.36.0", "vscode-jsonrpc": "^6.0.0", diff --git a/test/global.test.ts b/test/global.test.ts index 472232ede..602d7ffea 100644 --- a/test/global.test.ts +++ b/test/global.test.ts @@ -3,6 +3,8 @@ * Licensed under the MIT License. See LICENSE.md in the project root for license information. *--------------------------------------------------------------------------------------------*/ +// tslint:disable:no-console no-function-expression no-implicit-dependencies + import * as fse from 'fs-extra'; import * as mocha from 'mocha'; import * as path from 'path'; @@ -19,8 +21,6 @@ import { useTestSnippets } from './support/TestSnippets'; import { logsFolder } from './testConstants'; import { useTestFunctionMetadata } from "./TestData"; -// tslint:disable:no-console no-function-expression - let previousSettings = { autoDetectJsonTemplates: undefined, fileAssociations: <{ [key: string]: string }>{} diff --git a/test/support/cache.ts b/test/support/cache.ts index bb818c496..55f21a8e1 100644 --- a/test/support/cache.ts +++ b/test/support/cache.ts @@ -3,6 +3,8 @@ * Licensed under the MIT License. See License.md in the project root for license information. *--------------------------------------------------------------------------------------------*/ +// tslint:disable: no-implicit-dependencies + import * as fse from 'fs-extra'; import * as os from 'os'; import * as path from 'path';