fix(web): restore shadcn theme tokens in index.css; tidy deps + eslint rule

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-03 22:21:58 +02:00
parent b7ec4b1041
commit 5267f05089
4 changed files with 89 additions and 5 deletions
+4 -1
View File
@@ -11,6 +11,9 @@ export default tseslint.config(
files: ["**/*.{ts,tsx}"],
languageOptions: { ecmaVersion: 2022, globals: globals.browser },
plugins: { "react-hooks": reactHooks, "react-refresh": reactRefresh },
rules: { ...reactHooks.configs.recommended.rules },
rules: {
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
},
},
);