umami/.eslintrc.json

25 lines
489 B
JSON
Raw Normal View History

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
},
2022-03-19 03:02:06 +01:00
"extends": ["eslint:recommended", "plugin:prettier/recommended", "next"],
2020-07-17 10:03:38 +02:00
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"react/display-name": "off",
2020-07-30 09:06:29 +02:00
"react/react-in-jsx-scope": "off",
2022-03-11 04:01:33 +01:00
"react/prop-types": "off",
"import/no-anonymous-default-export": "off"
2020-07-17 10:03:38 +02:00
},
"globals": {
"React": "writable"
}
}