2024-03-19 12:54:15 +00:00
|
|
|
{
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"plugins": ["react"],
|
|
|
|
"extends": [
|
|
|
|
"react-app",
|
|
|
|
"react-app/jest",
|
|
|
|
"plugin:react/recommended"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"react": {
|
|
|
|
"version": "detect"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"rules": {
|
2024-08-09 06:24:29 +00:00
|
|
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
|
|
|
"semi": ["error", "always"]
|
2024-03-19 12:54:15 +00:00
|
|
|
}
|
|
|
|
}
|