mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-14 17:25:02 +01:00
23 lines
432 B
JSON
23 lines
432 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2020": true
|
|
},
|
|
"extends": ["eslint:recommended", "plugin:react/recommended", "prettier", "prettier/react"],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": 11,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["react"],
|
|
"rules": {
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/prop-types": "off"
|
|
},
|
|
"globals": {
|
|
"React": "writable"
|
|
}
|
|
}
|