mirror of
https://github.com/aljazceru/goose.git
synced 2026-02-14 11:04:29 +01:00
36 lines
855 B
JSON
36 lines
855 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es2020": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"ignorePatterns": ["dist", ".eslintrc.json"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["react-refresh", "@typescript-eslint", "react"],
|
|
"rules": {
|
|
"react-refresh/only-export-components": [
|
|
"warn",
|
|
{ "allowConstantExport": true }
|
|
],
|
|
"@typescript-eslint/no-unused-vars": ["warn", {
|
|
"varsIgnorePattern": "^React$|^_",
|
|
"argsIgnorePattern": "^_",
|
|
"ignoreRestSiblings": true
|
|
}],
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/jsx-uses-react": "off",
|
|
"react/jsx-uses-vars": "error"
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|