mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-29 04:01:02 -05:00
Add exception for type-linting (#4470)
* Add exception for type-linting since we are linting file by file to avoid running into https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file * Update tsconfig.json * remove trailing commas for last entries
This commit is contained in:
parent
1a2db96f3d
commit
102cb5dc38
1 changed files with 6 additions and 0 deletions
6
.github/linters/tsconfig.json
vendored
6
.github/linters/tsconfig.json
vendored
|
@ -7,5 +7,11 @@
|
||||||
"tests",
|
"tests",
|
||||||
"tools",
|
"tools",
|
||||||
"/tmp/lint/.automation/test"
|
"/tmp/lint/.automation/test"
|
||||||
|
],
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"extends": ["plugin:@typescript-eslint/disable-type-checked"],
|
||||||
|
"files": ["./**/*.{ts,tsx}"]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue