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