2020-07-17 10:03:38 +02:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2020-08-01 12:34:56 +02:00
|
|
|
"es2020": true,
|
|
|
|
"node": true
|
2020-07-17 10:03:38 +02:00
|
|
|
},
|
|
|
|
"extends": ["eslint:recommended", "plugin:react/recommended", "prettier", "prettier/react"],
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"ecmaVersion": 11,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": ["react"],
|
|
|
|
"rules": {
|
2020-08-23 04:05:07 +02:00
|
|
|
"react/display-name": "off",
|
2020-07-30 09:06:29 +02:00
|
|
|
"react/react-in-jsx-scope": "off",
|
|
|
|
"react/prop-types": "off"
|
2020-07-17 10:03:38 +02:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"React": "writable"
|
|
|
|
}
|
|
|
|
}
|