webserver-framework-frontend/.eslintrc.json

34 lines
665 B
JSON
Raw Normal View History

2022-11-17 13:32:07 +01:00
{
"env": {
"node": true,
"browser": true,
"es2021": true
},
"extends": [
2023-07-05 12:41:40 +02:00
"eslint:recommended",
2023-04-19 23:32:47 +02:00
"plugin:@typescript-eslint/recommended",
2022-11-17 13:32:07 +01:00
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
2023-07-05 12:41:40 +02:00
"nonblock-statement-body-position": [
"warn",
"below"
2022-11-17 13:32:07 +01:00
],
"brace-style": [
"warn",
2023-07-05 12:41:40 +02:00
"allman"
2022-11-17 13:32:07 +01:00
],
2023-07-05 13:28:06 +02:00
"indent": "warn",
"semi": "error"
2022-11-17 13:32:07 +01:00
}
2023-07-05 12:41:40 +02:00
}