2020-08-05 08:14:22 +03:00
|
|
|
{
|
|
|
|
|
"parser": "@typescript-eslint/parser",
|
2022-05-29 10:56:25 +02:00
|
|
|
"extends": ["react-app", "react-app/jest"],
|
2020-08-05 08:14:22 +03:00
|
|
|
"plugins": ["@typescript-eslint"],
|
|
|
|
|
"env": {
|
|
|
|
|
"node": true
|
|
|
|
|
},
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"ecmaVersion": 2020,
|
|
|
|
|
"ecmaFeatures": {
|
|
|
|
|
"legacyDecorators": true,
|
|
|
|
|
"jsx": true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"settings": {
|
|
|
|
|
"react": {
|
|
|
|
|
"version": "16"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"rules": {
|
|
|
|
|
"space-before-function-paren": 0,
|
|
|
|
|
"react/prop-types": 0,
|
|
|
|
|
"react/jsx-handler-names": 0,
|
|
|
|
|
"react/jsx-fragments": 0,
|
|
|
|
|
"react/no-unused-prop-types": 0,
|
|
|
|
|
"import/export": 0,
|
|
|
|
|
"no-unused-vars": "off",
|
2021-03-06 19:41:21 +02:00
|
|
|
"no-use-before-define": "off",
|
2020-08-05 08:14:22 +03:00
|
|
|
"@typescript-eslint/no-unused-vars": "error"
|
|
|
|
|
}
|
|
|
|
|
}
|