laconic-wallet-web/.eslintrc.json
Nabarun 6f174c6e0c Add loader at app start and configure eslint (#10)
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675)

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: #10
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2024-08-08 10:39:02 +00:00

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