umami/.eslintrc.json

26 lines
529 B
JSON
Raw Normal View History

2020-07-17 08:03:38 +00:00
{
"env": {
"browser": true,
2020-08-01 10:34:56 +00:00
"es2020": true,
"node": true
2020-07-17 08:03:38 +00:00
},
2022-03-19 02:02:06 +00:00
"extends": ["eslint:recommended", "plugin:prettier/recommended", "next"],
2020-07-17 08:03:38 +00:00
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"react/display-name": "off",
2020-07-30 07:06:29 +00:00
"react/react-in-jsx-scope": "off",
2022-03-11 03:01:33 +00:00
"react/prop-types": "off",
2022-07-16 06:53:31 +00:00
"import/no-anonymous-default-export": "off",
"@next/next/no-img-element": "off"
2020-07-17 08:03:38 +00:00
},
"globals": {
"React": "writable"
}
}