33 lines
596 B
Text
33 lines
596 B
Text
{
|
|
"root": true,
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"semi": "error",
|
|
"react/prop-types": "off"
|
|
},
|
|
"plugins": ["react-hooks"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:react/recommended"
|
|
]
|
|
}
|