-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
36 lines (36 loc) · 918 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
36
{
"env": {
"node": true
},
"extends": "airbnb-base",
"rules": {
"arrow-parens": "off",
"comma-dangle": "off",
"curly": "off",
"global-require": "off",
"import/no-dynamic-require": "off",
"import/no-mutable-exports": "off",
"indent": "off",
"max-len": "off",
"no-bitwise": "off",
"no-console": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off",
"no-var": "error",
"operator-linebreak": "off",
"prefer-arrow-callback": "off",
"prefer-const": "error",
"prefer-destructuring": "off",
"prefer-numeric-literals": "off",
"prefer-template": "off",
"spaced-comment": ["error", "always", { "markers": ["@", "@include"], "exceptions": ["@"] }],
"vars-on-top": "off",
"func-names": "off",
"new-cap": ["error", {
"capIsNewExceptions": [
"ShellString"
]}
]
}
}