18 lines
292 B
JSON
18 lines
292 B
JSON
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"plugins": ["react"],
|
||
|
"extends": [
|
||
|
"react-app",
|
||
|
"react-app/jest",
|
||
|
"plugin:react/recommended"
|
||
|
],
|
||
|
"settings": {
|
||
|
"react": {
|
||
|
"version": "detect"
|
||
|
}
|
||
|
},
|
||
|
"rules": {
|
||
|
"indent": ["error", 2, { "SwitchCase": 1 }]
|
||
|
}
|
||
|
}
|