Skip to content

Commit d532bf6

Browse files
committed
remove 'project' option from default .eslintrc configs
1 parent 4c30a60 commit d532bf6

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

scripts/.eslintrc.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
11
{
2-
"extends": "../.eslintrc.json",
3-
"parserOptions": {
4-
"tsconfigRootDir": "scripts",
5-
"project": [
6-
"./importDefinitelyTypedTests/tsconfig.json",
7-
"./eslint/tsconfig.json",
8-
"./tsconfig.eslint.json"
9-
]
10-
}
2+
"extends": "../.eslintrc.json"
113
}

src/.eslintrc.ci.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"extends": "./.eslintrc.json",
3+
"parserOptions": {
4+
"tsconfigRootDir": "src",
5+
"project": "./tsconfig-base.json"
6+
},
37
"rules": {
48
"@typescript-eslint/no-unnecessary-qualifier": "error",
59
"@typescript-eslint/no-unnecessary-type-assertion": "error"

src/.eslintrc.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
22
"extends": "../.eslintrc.json",
3-
"parserOptions": {
4-
"tsconfigRootDir": "src",
5-
"project": "./tsconfig-base.json"
6-
},
73
"overrides": [
84
{
95
"files": ["lib/*.d.ts"],

0 commit comments

Comments
 (0)