This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 125
/
.eslintrc
82 lines (76 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"env": {
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"no-trailing-spaces": 2,
"indent": [2, 2, {
"SwitchCase": 1
}],
"eqeqeq": 2,
"quotes": 0,
"strict": 0,
"consistent-this": 0,
"no-undef": 2,
"dot-notation": 0,
"space-infix-ops": 0,
"space-unary-ops": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 2,
"comma-dangle": 0,
"semi-spacing": 0,
"consistent-return": 0,
"camelcase": 0,
"eol-last": 0,
"no-multi-spaces": 0,
"no-extra-boolean-cast": 0,
"no-eq-null": 0,
"no-alert": 0,
"no-unused-expressions": 2,
"no-console": 0,
"space-return-throw-case": 0,
"one-var": [2, {
"initialized": "never"
}],
"no-cond-assign": [2, "except-parens"],
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty": 2,
"no-extra-semi": 0,
"no-func-assign": 2,
"no-inner-declarations": 2,
"no-irregular-whitespace": 2,
"no-negated-in-lhs": 2,
"no-sparse-arrays": 2,
"no-unreachable": 2,
"use-isnan": 2,
"no-caller": 2,
"no-else-return": 0,
"no-eval": 2,
"no-implied-eval": 2,
"no-extend-native": 2,
"no-fallthrough": 2,
"no-lone-blocks": 2,
"no-loop-func": 2,
"no-new": 2,
"no-redeclare": 2,
"no-return-assign": [2, "always"],
"no-sequences": 2,
"radix": 2,
"wrap-iife": [2, "any"],
"no-undef-init": 2,
"no-delete-var": 2,
"no-use-before-define": [2, "nofunc"],
"dot-location": [2, "property"],
"curly": [2, "multi-line"],
"no-shadow": 2,
"no-shadow-restricted-names": 0,
"no-extra-bind": 2
}
}