-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
43 lines (43 loc) · 979 Bytes
/
.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
{
"extends": "airbnb-base",
"env": {
"es6": true,
"jest": true,
"node": true
},
"rules": {
"brace-style": ["error", "stroustrup"],
"capitalized-comments": [
"error",
"always",
{
"ignorePattern": "pragma|ignored",
"ignoreInlineComments": true,
"ignoreConsecutiveComments": true
}
],
"consistent-return": [0],
"global-require": 0,
"implicit-arrow-linebreak": 0,
"import/no-dynamic-require": 0,
"import/no-mutable-exports": [1],
"max-nested-callbacks": [1, 3],
"no-console": 0,
"no-plusplus": [1, {
"allowForLoopAfterthoughts": true
}],
"no-param-reassign": [0],
"no-prototype-builtins": [0],
"no-underscore-dangle": [0],
"no-unused-vars": [1],
"semi": ["error", "never"],
"strict": 0,
"valid-jsdoc": [1, {
"prefer": {
"returns": "return",
"property": "prop"
},
"requireReturn": false
}]
}
}