-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
117 lines (117 loc) · 2.88 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"parser": "@typescript-eslint/parser",
"extends": ["plugin:@typescript-eslint/recommended", "next/core-web-vitals"],
"plugins": [
"@typescript-eslint/eslint-plugin",
"import",
"no-relative-import-paths"
],
"rules": {
"no-relative-import-paths/no-relative-import-paths": [
"warn",
{ "allowSameFolder": false, "rootDir": "src" }
],
"curly": 1,
"no-console": 0,
"prefer-template": 0,
"consistent-return": 1,
"react/display-name": "off",
"max-classes-per-file": 0,
"prefer-destructuring": 0,
"arrow-body-style": ["warn", "always"],
"react/react-in-jsx-scope": "off",
"max-len": 0,
// "indent": ["error", 2],
"prefer-const": "error",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"no-redeclare": "error",
"max-lines": ["warn", { "max": 500 }],
"import/order": [
"error",
{
"newlines-between": "always",
"groups": [
"external",
"builtin",
"internal",
"sibling",
"parent",
"index"
],
"pathGroups": [
{
"pattern": "react",
"group": "external",
"position": "before"
},
{
"pattern": "next",
"group": "external",
"position": "before"
},
{
"pattern": "components/**",
"group": "internal",
"position": "before"
},
{
"pattern": "hooks/**",
"group": "internal",
"position": "before"
},
{
"pattern": "layout/**",
"group": "internal",
"position": "before"
},
{
"pattern": "api/**",
"group": "internal",
"position": "before"
},
{
"pattern": "lib/**",
"group": "internal",
"position": "before"
},
{
"pattern": "models/**",
"group": "internal",
"position": "before"
},
{
"pattern": "store/**",
"group": "internal",
"position": "before"
},
{
"pattern": "constants/**",
"group": "internal",
"position": "before"
},
{
"pattern": "styles/**",
"group": "internal",
"position": "before"
},
{
"pattern": "assets/**",
"group": "internal",
"position": "before"
},
{
"pattern": "config/**",
"group": "internal",
"position": "before"
}
],
"alphabetize": {
"order": "ignore",
"caseInsensitive": true
},
"warnOnUnassignedImports": true
}
]
}
}