-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.json
More file actions
33 lines (33 loc) · 904 Bytes
/
.eslintrc.json
File metadata and controls
33 lines (33 loc) · 904 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
33
{
"env": {
"node": true
},
"extends": "airbnb-base",
"rules": {
"comma-dangle": ["error", "always-multiline"],
"consistent-return": "off",
"curly": ["error", "multi-line"],
"func-names": "off",
"function-call-argument-newline": "off",
"function-paren-newline": "off",
"global-require": "off",
"indent": "off",
"max-len": "off",
"newline-per-chained-call": "off",
"no-console": "off",
"no-continue": "off",
"no-else-return": "off",
"no-multi-spaces": "off",
"no-multiple-empty-lines": ["error", { "max": 2, "maxBOF": 0, "maxEOF": 0 } ],
"no-param-reassign": "off",
"no-plusplus": "off",
"operator-linebreak": "off",
"quote-props": "off",
"strict": "off",
"prefer-arrow-callback": "off",
"prefer-template": "off",
"no-var": "off",
"import/no-dynamic-require": "off",
"vars-on-top": "off"
}
}