mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 12:36:50 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
f0d170ee5c
commit
36c79de28b
2 changed files with 154 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue