forked from weseek/growi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
93 lines (93 loc) · 2.15 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
module.exports = {
root: true, // https://eslint.org/docs/user-guide/configuring/configuration-files#cascading-and-hierarchy
extends: [
'weseek',
'weseek/typescript',
'plugin:jest/recommended',
],
env: {
'jest/globals': true,
},
globals: {
},
plugins: [
'jest',
'regex',
],
rules: {
'import/prefer-default-export': 'off',
'import/order': [
'warn',
{
pathGroups: [
{
pattern: 'react',
group: 'builtin',
position: 'before',
},
{
pattern: '^/**',
group: 'parent',
position: 'before',
},
{
pattern: '~/**',
group: 'parent',
position: 'before',
},
{
pattern: '*.css',
group: 'type',
patternOptions: { matchBase: true },
position: 'after',
},
{
pattern: '*.scss',
group: 'type',
patternOptions: { matchBase: true },
position: 'after',
},
],
alphabetize: {
order: 'asc',
},
pathGroupsExcludedImportTypes: ['react'],
'newlines-between': 'always',
},
],
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
indent: [
'error',
2,
{
SwitchCase: 1,
ArrayExpression: 'first',
FunctionDeclaration: { body: 1, parameters: 2 },
FunctionExpression: { body: 1, parameters: 2 },
},
],
'jest/no-standalone-expect': [
'error',
{ additionalTestBlockFunctions: ['each.test'] },
],
'regex/invalid': ['error', [
{
regex: '\\?\\<\\!',
message: 'Do not use any negative lookbehind',
}, {
regex: '\\?\\<\\=',
message: 'Do not use any Positive lookbehind',
},
]],
},
overrides: [
{
// enable the rule specifically for TypeScript files
files: ['*.ts', '*.tsx'],
rules: {
'@typescript-eslint/explicit-module-boundary-types': ['error'],
},
},
],
};