34 lines
632 B
JSON
34 lines
632 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"plugins": ["react", "react-hooks"],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"semi": ["error", "always"],
|
|
"quotes": ["error", "double"],
|
|
"no-unused-vars": "warn",
|
|
"react/prop-types": "off",
|
|
"react/react-in-jsx-scope": "off"
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|