diff --git a/scripts/.eslintrc.json b/scripts/.eslintrc.json index fa0bd324f3f..e9868f9128c 100644 --- a/scripts/.eslintrc.json +++ b/scripts/.eslintrc.json @@ -1,11 +1,3 @@ { - "extends": "../.eslintrc.json", - "parserOptions": { - "tsconfigRootDir": "scripts", - "project": [ - "./importDefinitelyTypedTests/tsconfig.json", - "./eslint/tsconfig.json", - "./tsconfig.eslint.json" - ] - } + "extends": "../.eslintrc.json" } diff --git a/src/.eslintrc.ci.json b/src/.eslintrc.ci.json index 857f07653ad..0c204a99c5d 100644 --- a/src/.eslintrc.ci.json +++ b/src/.eslintrc.ci.json @@ -1,5 +1,9 @@ { "extends": "./.eslintrc.json", + "parserOptions": { + "tsconfigRootDir": "src", + "project": "./tsconfig-base.json" + }, "rules": { "@typescript-eslint/no-unnecessary-qualifier": "error", "@typescript-eslint/no-unnecessary-type-assertion": "error" diff --git a/src/.eslintrc.json b/src/.eslintrc.json index 73687932e2f..4a05c98fb70 100644 --- a/src/.eslintrc.json +++ b/src/.eslintrc.json @@ -1,9 +1,5 @@ { "extends": "../.eslintrc.json", - "parserOptions": { - "tsconfigRootDir": "src", - "project": "./tsconfig-base.json" - }, "overrides": [ { "files": ["lib/*.d.ts"],