-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
35 lines (35 loc) · 995 Bytes
/
.eslintrc.json
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
{
"env": {
"node": true
},
"extends": "airbnb-base/legacy",
"rules": {
"comma-dangle": ["error", "always-multiline"],
"consistent-return": "off",
"curly": ["error", "multi-line"],
"func-names": "off",
"global-require": "off",
"indent": "off",
"max-len": "off",
"newline-per-chained-call": "off",
"no-console": "off",
"no-else-return": "off",
"no-empty": "off",
"no-mixed-operators": "off",
"no-multi-spaces": "off",
"no-multiple-empty-lines": ["error", { "max": 2, "maxBOF": 0, "maxEOF": 0 } ],
"no-param-reassign": "off",
"no-prototype-builtins": "off",
"no-throw-literal": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"quote-props": "off",
"spaced-comment": ["error", "always", { "markers": ["@", "@include"], "exceptions": ["@", "@commands"] }],
"vars-on-top": "off",
"new-cap": ["error", {
"capIsNewExceptions": [
"ShellString"
]}
]
}
}