2021-10-03 19:49:20 +02:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
2021-10-05 01:22:33 +02:00
|
|
|
"eslint:recommended",
|
|
|
|
"prettier",
|
|
|
|
"plugin:react/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
2021-10-03 19:49:20 +02:00
|
|
|
],
|
2021-10-05 01:22:33 +02:00
|
|
|
"parser": "@typescript-eslint/parser",
|
2021-10-03 19:49:20 +02:00
|
|
|
"parserOptions": {
|
2021-10-05 01:22:33 +02:00
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"ecmaVersion": 12,
|
|
|
|
"sourceType": "module"
|
2021-10-03 19:49:20 +02:00
|
|
|
},
|
2021-10-05 01:22:33 +02:00
|
|
|
"plugins": [
|
|
|
|
"react",
|
|
|
|
"@typescript-eslint"
|
|
|
|
],
|
2021-10-03 19:49:20 +02:00
|
|
|
"rules": {
|
2021-10-05 01:22:33 +02:00
|
|
|
"@typescript-eslint/no-explicit-any": "error",
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "error",
|
|
|
|
"@typescript-eslint/no-unused-vars": "error"
|
2021-10-03 19:49:20 +02:00
|
|
|
}
|
|
|
|
}
|