forked from shelljs/shelljs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
32 lines (32 loc) · 773 Bytes
/
.eslintrc.json
File metadata and controls
32 lines (32 loc) · 773 Bytes
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
{
"env": {
"node": true
},
"extends": "airbnb-base/legacy",
"rules": {
"comma-dangle": [2, "always-multiline"],
"global-require": 0,
"vars-on-top": 0,
"spaced-comment": [2, "always", { "markers": ["@", "@include"], "exceptions": ["@", "@commands"] }],
"no-param-reassign": 0,
"no-console": 0,
"curly": [2, "multi-line"],
"func-names": 0,
"quote-props": 0,
"no-underscore-dangle": 0,
"max-len": 0,
"no-use-before-define": 0,
"no-empty": 0,
"no-else-return": 0,
"no-throw-literal": 0,
"newline-per-chained-call": 0,
"consistent-return": 0,
"no-mixed-operators": 0,
"no-prototype-builtins": 0,
"new-cap": [2, {
"capIsNewExceptions": [
"ShellString"
]}
]
}
}