-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
37 lines (37 loc) · 827 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
{
"extends": "airbnb",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-multi-spaces": 0,
"comma-dangle": 0,
"no-return-assign": 0,
"spaced-comment": 0,
"no-plusplus": 0,
"generator-star-spacing": 0,
"no-confusing-arrow": 0,
"prefer-template": 0,
"no-use-before-define": 0,
"class-methods-use-this": 0,
"no-useless-computed-key": 0,
"no-param-reassign": 0,
"func-names": 0,
"max-len": 0,
"no-loop-func": 0,
"function-paren-newline": 0,
"no-extra-boolean-cast": 0,
"no-continue": 0,
"no-mixed-operators": 0,
"no-console": 0,
"arrow-body-style": 0,
"prefer-arrow-callback": 0,
"no-throw-literal": 0,
"arrow-parens": [
2,
"as-needed"
],
"consistent-return": 0
}
}