-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
144 lines (143 loc) · 3.47 KB
/
.eslintrc.js
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* eslint-disable @typescript-eslint/naming-convention */
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'react', 'react-hooks'],
ignorePatterns: [
'build',
'dist',
'node_modules',
'renderer',
'.next',
'_next',
'*.md',
'out',
],
extends: [
'next/core-web-vitals',
'eslint:recommended',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'prettier',
'plugin:prettier/recommended',
'eslint-config-next/core-web-vitals',
],
globals: {
React: true,
JSX: true,
},
settings: {
react: {
version: 'detect',
},
},
rules: {
'@next/next/no-server-import-in-page': 'off',
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'default',
format: ['camelCase', 'PascalCase'],
},
{
selector: 'variableLike',
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
leadingUnderscore: 'allow',
},
{
selector: 'property',
format: ['camelCase', 'snake_case', 'PascalCase', 'UPPER_CASE'],
},
{
selector: 'memberLike',
format: ['camelCase', 'PascalCase'],
},
{
selector: 'typeLike',
format: ['PascalCase'],
},
],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@next/next/no-img-element': 'off',
'@next/next/no-html-link-for-pages': 'off',
'react/display-name': 'off',
'react-hooks/rules-of-hooks': 'error',
'@typescript-eslint/no-unused-vars': ['warn'],
'import/order': [
'error',
{
'alphabetize': { order: 'asc' },
'groups': ['builtin', 'external', 'parent', 'sibling', 'index'],
'pathGroups': [
{
pattern: 'react*',
group: 'external',
position: 'before',
},
{
pattern: 'next*',
group: 'external',
position: 'before',
},
{
pattern: 'next/*',
group: 'external',
position: 'before',
},
{
pattern: '@/assets/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/components/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/containers/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/context/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/constants/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/hooks/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/services/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/screens/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/utils/**',
group: 'parent',
position: 'before',
},
{
pattern: '@/styles/**',
group: 'parent',
position: 'before',
},
],
'pathGroupsExcludedImportTypes': ['react'],
'newlines-between': 'always-and-inside-groups',
},
],
},
}