-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
48 lines (48 loc) · 1.39 KB
/
.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
42
43
44
45
46
47
48
{
"extends": "airbnb-base",
"env": {
"browser": true,
"node": true,
"jest": true
},
"rules": {
"no-console": ["error", { "allow" : ["warn", "error"] }],
"no-underscore-dangle": "off",
"linebreak-style": 0,
"arrow-parens": [
"off"
],
"no-plusplus": "off",
"one-var": "off",
"no-bitwise": "off",
"one-var-declaration-per-line": "off",
"class-methods-use-this": "off",
"no-multiple-empty-lines": [2, {"max": 1}],
"no-else-return": "off",
"block-spacing": ["error", "never"],
"object-curly-spacing": ["error", "never"],
"prefer-destructuring": "off",
"import/no-absolute-path": "off",
"import/extensions":"off",
"import/no-unresolved": "off",
"compat/compat": "off",
"consistent-return": "off",
"arrow-body-style": "off",
"function-paren-newline": ["error", "multiline"],
"import/prefer-default-export":"off",
"array-callback-return":"off",
"import/first": "off",
"object-curly-newline": "off",
"eol-last": "off",
"max-len":"off",
"no-confusing-arrow": "off",
"no-case-declarations": "off",
"no-unused-vars": ["error", {"args": "none"}],
"comma-dangle": ["error", "always-multiline"],
"generator-star-spacing": "off",
"import/no-extraneous-dependencies": "off",
"no-use-before-define": "off",
"no-multi-assign": "off",
"no-restricted-syntax": "off"
}
}