45 lines
897 B
JSON
45 lines
897 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es2021": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:react/recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"prettier"
|
||
|
],
|
||
|
"overrides": [
|
||
|
],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": "latest",
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react",
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"rules": {
|
||
|
"react/jsx-uses-react": "off",
|
||
|
"react/react-in-jsx-scope": "off",
|
||
|
"react/prop-types": "off",
|
||
|
"react/display-name": "off",
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
"@typescript-eslint/ban-ts-comment": "off",
|
||
|
"no-unused-vars": "off",
|
||
|
"@typescript-eslint/no-unused-vars": [
|
||
|
"error",
|
||
|
{
|
||
|
"argsIgnorePattern": "^_",
|
||
|
"varsIgnorePattern": "^_"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"settings": {
|
||
|
"react": {
|
||
|
"version": "18.2"
|
||
|
}
|
||
|
}
|
||
|
}
|