From 102cb5dc38a31b47d05762483b8fc0f347b66dcc Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Sun, 17 Sep 2023 05:35:36 -0700 Subject: [PATCH] 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 --- .github/linters/tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/linters/tsconfig.json b/.github/linters/tsconfig.json index 56cfb674..21e7591e 100644 --- a/.github/linters/tsconfig.json +++ b/.github/linters/tsconfig.json @@ -7,5 +7,11 @@ "tests", "tools", "/tmp/lint/.automation/test" + ], + "overrides": [ + { + "extends": ["plugin:@typescript-eslint/disable-type-checked"], + "files": ["./**/*.{ts,tsx}"] + } ] }