mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
27 lines
509 B
JSON
27 lines
509 B
JSON
|
{
|
||
|
"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"
|
||
|
},
|
||
|
"settings": {
|
||
|
"react": {
|
||
|
"pragma": "React",
|
||
|
"version": "detect"
|
||
|
}
|
||
|
}
|
||
|
}
|