-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 1007 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
{
"env": {
"node": true,
"es6": true
},
"root": true,
"extends": "airbnb-base",
"parserOptions": {
"sourceType": "script"
},
"rules": {
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}],
"no-use-before-define": 0,
"no-restricted-syntax": 0,
"no-mixed-operators": 0,
"no-confusing-arrow": 0,
"no-nested-ternary": 0,
"no-param-reassign": 0,
"no-sequences": 0,
"no-continue": 0,
"no-plusplus": 0,
"no-bitwise": 0,
"no-void": 0,
"quote-props": ["error", "consistent-as-needed"],
"strict": ["error", "global"],
"max-len": ["error", 140, 4],
"import/newline-after-import": 0,
"import/no-dynamic-require": 0,
"lines-around-directive": 0,
"function-paren-newline": 0,
"consistent-return": 0,
"arrow-body-style": 0,
"global-require": 0
}
}