2021-02-16 19:48:09 +01:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2021-02-23 07:16:10 +01:00
|
|
|
"prettier",
|
2021-02-16 19:48:09 +01:00
|
|
|
"plugin:react/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"ecmaVersion": 12,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"react",
|
|
|
|
"@typescript-eslint"
|
|
|
|
],
|
|
|
|
"rules": {
|
2021-02-17 04:56:56 +01:00
|
|
|
"@typescript-eslint/no-explicit-any": "error",
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "error",
|
|
|
|
"@typescript-eslint/no-unused-vars": "error"
|
2021-02-16 19:48:09 +01:00
|
|
|
}
|
|
|
|
}
|