testnet-onboarding-app/.eslintrc.json

18 lines
292 B
JSON
Raw Normal View History

{
"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 }]
}
}