Files
eve-pi/.eslintrc.json
2023-10-02 13:29:53 +03:00

26 lines
484 B
JSON

{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"next/core-web-vitals",
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["react", "react-hooks"],
"rules": {
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off",
"no-unused-vars": "off"
}
}