generated from erangel1/generic-template
initial commit. phase 1 complete
This commit is contained in:
Generated
Vendored
+25
@@ -0,0 +1,25 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
||||
// See LICENSE in the project root for license information.
|
||||
import { eslintFolder, eslintPackageVersion } from '../_patch-base';
|
||||
import { findAndConsoleLogPatchPathCli, getPathToLinterJS, ensurePathToGeneratedPatch } from './path-utils';
|
||||
import { patchClass, extendVerifyFunction } from './bulk-suppressions-patch';
|
||||
import { generatePatchedLinterJsFileIfDoesNotExist } from './generate-patched-file';
|
||||
import { ESLINT_BULK_DETECT_ENV_VAR_NAME, ESLINT_BULK_PATCH_PATH_ENV_VAR_NAME } from './constants';
|
||||
if (!eslintFolder) {
|
||||
console.error('@rushstack/eslint-patch/eslint-bulk-suppressions: Could not find ESLint installation to patch.');
|
||||
process.exit(1);
|
||||
}
|
||||
const eslintBulkDetectEnvVarValue = process.env[ESLINT_BULK_DETECT_ENV_VAR_NAME];
|
||||
if (eslintBulkDetectEnvVarValue === 'true' || eslintBulkDetectEnvVarValue === '1') {
|
||||
findAndConsoleLogPatchPathCli();
|
||||
process.exit(0);
|
||||
}
|
||||
const pathToLinterJS = getPathToLinterJS();
|
||||
process.env[ESLINT_BULK_PATCH_PATH_ENV_VAR_NAME] = require.resolve('./bulk-suppressions-patch');
|
||||
const pathToGeneratedPatch = ensurePathToGeneratedPatch();
|
||||
generatePatchedLinterJsFileIfDoesNotExist(pathToLinterJS, pathToGeneratedPatch, eslintPackageVersion);
|
||||
const { Linter: LinterPatch } = require(pathToGeneratedPatch);
|
||||
LinterPatch.prototype.verify = extendVerifyFunction(LinterPatch.prototype.verify);
|
||||
const { Linter } = require(pathToLinterJS);
|
||||
patchClass(Linter, LinterPatch);
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user