-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
71 lines (71 loc) · 1.44 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
module.exports = {
root : true,
env : {
node : true,
es2020 : true
},
parserOptions : {
sourceType : 'module',
ecmaVersion : 2022
},
extends : [
'eslint:recommended',
'standard'
],
plugins : [
'newline-destructuring'
],
rules : {
'no-console' : 'error',
semi : ['error', 'always'],
'key-spacing' : [
'error',
{
beforeColon : true
}
],
'space-before-function-paren' : [
'error',
{
anonymous : 'always',
named : 'never',
asyncArrow : 'always'
}
],
'operator-linebreak' : ['error', 'after'],
'no-nested-ternary' : 'error',
quotes : ['error', 'single'],
'arrow-parens' : ['error', 'always'],
'object-property-newline' : ['error', { allowMultiplePropertiesPerLine : false }],
'object-curly-newline' : ['error', {
minProperties : 2,
multiline : true,
consistent : true
}],
'newline-destructuring/newline' : ['error', {
items : 1,
consistent : true
}],
'class-methods-use-this' : 'warn',
strict : ['warn', 'global'],
'padding-line-between-statements' : [
'warn',
{
blankLine : 'always',
prev : 'multiline-expression',
next : 'multiline-expression'
}
]
},
overrides : [
{
files : ['test/**/*.js'],
env : {
jest : true
},
rules : {
'no-new' : 'warn'
}
}
]
};