2021-07-28 16:15:52 +03:00
|
|
|
module.exports = {
|
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
es2021: true,
|
|
|
|
},
|
|
|
|
extends: [
|
2022-12-20 17:17:51 +02:00
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:react/recommended",
|
|
|
|
"plugin:react-hooks/recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
2021-07-28 16:15:52 +03:00
|
|
|
'airbnb',
|
2022-12-20 17:17:51 +02:00
|
|
|
'prettier',
|
2021-07-28 16:15:52 +03:00
|
|
|
],
|
2022-12-20 17:17:51 +02:00
|
|
|
parser: "@typescript-eslint/parser",
|
2021-07-28 16:15:52 +03:00
|
|
|
parserOptions: {
|
|
|
|
ecmaFeatures: {
|
|
|
|
jsx: true,
|
|
|
|
},
|
2022-12-20 17:17:51 +02:00
|
|
|
ecmaVersion: 'latest',
|
2021-07-28 16:15:52 +03:00
|
|
|
sourceType: 'module',
|
|
|
|
},
|
2023-10-06 05:44:06 +03:00
|
|
|
"globals": {
|
|
|
|
JSX: "readonly"
|
|
|
|
},
|
2021-07-28 16:15:52 +03:00
|
|
|
plugins: [
|
|
|
|
'react',
|
2022-12-20 17:17:51 +02:00
|
|
|
'@typescript-eslint'
|
2021-07-28 16:15:52 +03:00
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'linebreak-style': 0,
|
|
|
|
'no-underscore-dangle': 0,
|
2023-06-12 14:15:23 +03:00
|
|
|
"no-shadow": "off",
|
2022-12-20 17:17:51 +02:00
|
|
|
|
|
|
|
"import/prefer-default-export": "off",
|
|
|
|
"import/extensions": "off",
|
|
|
|
"import/no-unresolved": "off",
|
|
|
|
"import/no-extraneous-dependencies": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
devDependencies: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
|
2022-02-05 14:19:51 +02:00
|
|
|
'react/no-unstable-nested-components': [
|
|
|
|
'error',
|
|
|
|
{ allowAsProps: true },
|
|
|
|
],
|
2022-12-20 17:17:51 +02:00
|
|
|
"react/jsx-filename-extension": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
extensions: [".tsx", ".jsx"],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
|
|
|
|
"react/require-default-props": "off",
|
|
|
|
"react/jsx-props-no-spreading": "off",
|
|
|
|
"react-hooks/rules-of-hooks": "error",
|
|
|
|
"react-hooks/exhaustive-deps": "error",
|
|
|
|
|
|
|
|
"@typescript-eslint/no-unused-vars": "error",
|
2023-06-12 14:15:23 +03:00
|
|
|
"@typescript-eslint/no-shadow": "error"
|
2021-07-28 16:15:52 +03:00
|
|
|
},
|
|
|
|
};
|