Files
qiming/qiming-xagi-frontend-templates/packages/react-vite/.eslintrc.json
2026-06-01 13:43:09 +08:00

35 lines
795 B
JSON

{
"root": true,
"env": {
"browser": true,
"es2020": true
},
"extends": ["eslint:recommended"],
"ignorePatterns": ["dist"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["@typescript-eslint", "react", "react-hooks", "react-refresh"],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
],
"react-refresh/only-export-components": "off",
"react-hooks/exhaustive-deps": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}