28 lines
587 B
Plaintext
28 lines
587 B
Plaintext
|
|
{
|
||
|
|
"root": true,
|
||
|
|
"env": { "browser": true, "es2020": true },
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended",
|
||
|
|
"plugin:react-hooks/recommended",
|
||
|
|
"plugin:prettier/recommended"
|
||
|
|
],
|
||
|
|
"ignorePatterns": [
|
||
|
|
"dist",
|
||
|
|
".eslintrc.cjs",
|
||
|
|
"vite.config.ts",
|
||
|
|
"vitest.config.ts"
|
||
|
|
],
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"parserOptions": {
|
||
|
|
"project": "./tsconfig.json"
|
||
|
|
},
|
||
|
|
"plugins": ["react-refresh"],
|
||
|
|
"rules": {
|
||
|
|
"react-refresh/only-export-components": [
|
||
|
|
"warn",
|
||
|
|
{ "allowConstantExport": true }
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|