2020-05-08 21:50:27 +03:00
|
|
|
{
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2020,
|
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaFeatures": {
|
|
|
|
// Allows for the parsing of JSX
|
|
|
|
"jsx": true
|
|
|
|
}
|
|
|
|
},
|
2021-02-14 11:07:58 +03:00
|
|
|
"ignorePatterns": ["node_modules/**/*"],
|
2020-05-08 21:50:27 +03:00
|
|
|
"settings": {
|
|
|
|
"react": {
|
|
|
|
"version": "detect"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"plugin:react/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
2020-05-09 01:32:36 +03:00
|
|
|
"plugin:react-hooks/recommended",
|
2020-05-08 21:50:27 +03:00
|
|
|
"prettier/@typescript-eslint",
|
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
2020-05-08 22:46:42 +03:00
|
|
|
"prettier/prettier": "error",
|
2020-05-09 01:32:36 +03:00
|
|
|
"@typescript-eslint/no-explicit-any": "off"
|
2020-05-08 21:50:27 +03:00
|
|
|
}
|
2021-02-14 11:07:58 +03:00
|
|
|
}
|