-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
39 lines (39 loc) · 927 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"extends": [
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"plugin:react-perf/all",
"standard-react",
"next",
"next/core-web-vitals",
"prettier"
],
"rules": {
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"unknown",
["internal", "sibling", "parent"],
"index",
"object",
"type"
],
"newlines-between": "always"
}
],
"@typescript-eslint/consistent-type-imports": [
"warn",
{ "fixStyle": "separate-type-imports" }
],
"react-perf/jsx-no-new-function-as-prop": "off",
"react-perf/jsx-no-new-object-as-prop": "off",
"react-perf/jsx-no-new-array-as-prop": "off",
"no-unused-vars": "off",
"@next/next/no-img-element": "off",
"react/no-unescaped-entities": "off"
},
"plugins": ["@typescript-eslint"]
}