19 lines
468 B
Plaintext
19 lines
468 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["@typescript-eslint", "react-hooks"],
|
|
"extends": [
|
|
"plugin:react/recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"react-hooks/rules-of-hooks": "error",
|
|
"react-hooks/exhaustive-deps": "warn",
|
|
"react/prop-types": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off"
|
|
}
|
|
}
|