2020-08-04 16:22:31 +02:00
|
|
|
{
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"extends": [
|
|
|
|
"standard",
|
|
|
|
"standard-react",
|
|
|
|
"plugin:prettier/recommended",
|
|
|
|
"prettier/standard",
|
|
|
|
"prettier/react",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended"
|
|
|
|
],
|
|
|
|
"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,
|
2020-10-03 19:07:09 +02:00
|
|
|
"import/export": 0,
|
|
|
|
"no-use-before-define": [0]
|
2020-08-04 16:22:31 +02:00
|
|
|
}
|
|
|
|
}
|