22 lines
430 B
Text
22 lines
430 B
Text
{
|
|
"root": true,
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"semi": "error",
|
|
"react/prop-types": "off"
|
|
},
|
|
"plugins": ["react-hooks"],
|
|
"extends": [
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:react/recommended"
|
|
]
|
|
}
|