mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
38 lines
753 B
JSON
38 lines
753 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es2021": true,
|
||
|
"jest": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:react/recommended",
|
||
|
"standard-with-typescript",
|
||
|
"prettier"
|
||
|
],
|
||
|
"overrides": [],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": "latest",
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
},
|
||
|
"sourceType": "module",
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"plugins": ["react", "react-hooks", "@typescript-eslint", "prettier"],
|
||
|
"rules": {
|
||
|
"react-hooks/rules-of-hooks": "error",
|
||
|
"react-hooks/exhaustive-deps": "warn",
|
||
|
"react/prop-types": "off",
|
||
|
"react/react-in-jsx-scope": "off"
|
||
|
},
|
||
|
"settings": {
|
||
|
"import/resolver": {
|
||
|
"typescript": {}
|
||
|
},
|
||
|
"react": {
|
||
|
"version": "detect"
|
||
|
}
|
||
|
}
|
||
|
}
|