-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (37 loc) · 989 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
{
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true
},
"rules": {
"max-params": ["warn", 5],
"import/no-dynamic-require": "warn",
"prefer-object-spread": "warn",
"max-classes-per-file": "off",
"operator-linebreak": 0,
"no-multiple-empty-lines": 0,
"prefer-promise-reject-errors": 0,
"function-paren-newline": 0,
"max-len": "warn",
"comma-dangle": 0,
"no-console": 2,
"no-multi-spaces": 0,
"consistent-return": 0,
"arrow-body-style": 0,
"no-param-reassign": [2, { "props": false }],
"no-underscore-dangle": 0,
"import/no-extraneous-dependencies": [0, { "devDependencies": true }],
"import/no-unresolved": 0,
"no-restricted-syntax": 0,
"no-multi-assign": 0,
"class-methods-use-this": 0,
"arrow-parens": 0,
"camelcase": 0,
"padded-blocks": 0,
"newline-per-chained-call": 0,
"no-return-assign": 0,
"indent": 0,
"import/no-named-as-default": 0
}
}