33 lines
640 B
JSON
33 lines
640 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"nonblock-statement-body-position": [
|
|
"warn",
|
|
"below"
|
|
],
|
|
"brace-style": [
|
|
"warn",
|
|
"allman"
|
|
],
|
|
"indent": "warn"
|
|
}
|
|
} |