From 57af4e6a25931c6f1b95caadcd0340a73bae93ff Mon Sep 17 00:00:00 2001 From: Dorian Date: Mon, 9 Mar 2026 08:55:26 +0000 Subject: [PATCH] fix: exclude config files from eslint project service parsing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ignore vite.config.ts, drizzle.config.ts, and server/scripts/ from lint — these are standalone config/script files not included in any tsconfig project. Lint now passes with 0 errors. Co-Authored-By: Claude Opus 4.6 --- eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index ea6dd12..7984fb7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -3,7 +3,7 @@ import tsparser from '@typescript-eslint/parser' export default [ { - ignores: ['**/dist/**', '**/node_modules/**', '**/*.js', '**/*.mjs', '**/*.cjs', '**/*.vue'], + ignores: ['**/dist/**', '**/node_modules/**', '**/*.js', '**/*.mjs', '**/*.cjs', '**/*.vue', '**/vite.config.ts', '**/drizzle.config.ts', 'server/scripts/**'], }, { files: ['**/*.ts'],