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:
Zack Koppert 2023-09-17 05:35:36 -07:00 committed by GitHub
parent 1a2db96f3d
commit 102cb5dc38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,5 +7,11 @@
"tests",
"tools",
"/tmp/lint/.automation/test"
],
"overrides": [
{
"extends": ["plugin:@typescript-eslint/disable-type-checked"],
"files": ["./**/*.{ts,tsx}"]
}
]
}