Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-17 19:10:54 +00:00
parent f0d170ee5c
commit 36c79de28b
2 changed files with 154 additions and 1 deletions

View file

@ -4,9 +4,10 @@ import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";
import mikaDesignSystem from "./eslint-rules/no-hardcoded-tailwind-colors.js";
export default tseslint.config(
{ ignores: ["dist", ".output", ".vinxi"] },
{ ignores: ["dist", ".output", ".vinxi", "eslint-rules/**"] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts,tsx}"],
@ -17,11 +18,20 @@ export default tseslint.config(
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
"mika-design-system": mikaDesignSystem,
},
rules: {
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
"@typescript-eslint/no-unused-vars": "off",
"mika-design-system/no-hardcoded-tailwind-colors": "error",
},
},
// UI primitives (shadcn) keep their original palette utilities — exempt them.
{
files: ["src/components/ui/**/*.{ts,tsx}"],
rules: {
"mika-design-system/no-hardcoded-tailwind-colors": "off",
},
},
eslintPluginPrettier,