From ff752985c6a8e25b27ff9d4533d00f6b6849397b Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Sat, 20 Dec 2025 14:34:01 +0800 Subject: [PATCH] fix: update ESLint ignores to include 'build' and '.react-router' --- apps/frontend/eslint.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/eslint.config.ts b/apps/frontend/eslint.config.ts index 0c1d889..647d35e 100644 --- a/apps/frontend/eslint.config.ts +++ b/apps/frontend/eslint.config.ts @@ -7,7 +7,7 @@ import pluginReactHooks from 'eslint-plugin-react-hooks'; export default tseslint.config( { // Ignore files and directories - ignores: ['dist', 'node_modules', 'app/generated'], + ignores: ['node_modules', 'app/generated', 'build', '.react-router'], }, js.configs.recommended, ...tseslint.configs.recommended,