forked from w8r/avl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 1003 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
{
"extends": "airbnb-base",
"env": {
"node": true,
"mocha": true
},
"rules": {
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/no-duplicates": 0,
"import/extensions": 0,
"import/no-absolute-path": 0,
"arrow-parens": 0,
"padded-blocks": 0,
"no-spaced-func": 0,
"func-call-spacing": 0,
"space-before-function-paren": 0,
"no-plusplus": 0,
"no-mixed-operators": 0,
"no-param-reassign": 0,
"no-unused-vars": 1,
"prefer-const": 0,
"comma-dangle": 0,
"spaced-comment": 0,
"no-multi-spaces": 0,
"no-restricted-properties": 0,
"no-nested-ternary": 0,
"no-shadow": 0,
"one-var-declaration-per-line": 0,
"one-var": 0,
"operator-assignment": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"no-var": 0,
"vars-on-top": 0,
"no-lonely-if": 0,
template-curly-spacing: 0,
object-property-newline: 0
}
}