-
Notifications
You must be signed in to change notification settings - Fork 12
/
.eslintrc
90 lines (90 loc) · 1.72 KB
/
.eslintrc
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
{
"parser": "@babel/eslint-parser",
"extends": [
"eslint:recommended"
],
"env": {
"es6": true,
"node": true,
"jest": true
},
"globals": {
"hexo": true
},
"rules": {
"max-len": [
2,
{
"code": 130
}
],
"brace-style": [
2,
"stroustrup",
{
"allowSingleLine": true
}
],
"semi": [
2,
"never"
],
"quotes": [
2,
"single"
],
"one-var": [
2,
"never"
],
"padded-blocks": [
2,
"never"
],
"space-before-function-paren": [
2,
"never"
],
"no-console": [
"error",
{
"allow": [
"warn",
"error"
]
}
],
"no-trailing-spaces": [
2,
{
"skipBlankLines": true
}
],
"operator-linebreak": [
2,
"after",
{
"overrides": {
"?": "ignore",
":": "ignore"
}
}
],
"quote-props": [
2,
"as-needed"
],
"valid-jsdoc": [
2,
{
"requireReturnDescription": false,
"requireParamDescription": false
}
],
"multiline-ternary": [
2,
"always-multiline"
],
"no-prototype-builtins": [0]
}
}