mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-10 02:53:36 -05:00
102cb5dc38
* 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
17 lines
288 B
JSON
17 lines
288 B
JSON
{
|
|
"compilerOptions": {
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"tests",
|
|
"tools",
|
|
"/tmp/lint/.automation/test"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"extends": ["plugin:@typescript-eslint/disable-type-checked"],
|
|
"files": ["./**/*.{ts,tsx}"]
|
|
}
|
|
]
|
|
}
|