-
Notifications
You must be signed in to change notification settings - Fork 70
/
.eslintrc
53 lines (53 loc) · 786 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"env": {
"node": true,
"mocha": true,
"jest": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"mocha"
],
"globals": {},
"rules": {
"no-bitwise": 2,
"curly": 2,
"eqeqeq": 2,
"guard-for-in": 2,
"wrap-iife": [
2,
"any"
],
"no-use-before-define": [
2,
{
"functions": false
}
],
"new-cap": 2,
"no-caller": 2,
"no-new": 2,
"no-plusplus": 2,
"no-empty": 2,
"dot-notation": 0,
"no-undef": 2,
"no-unused-vars": 2,
"no-eq-null": 2,
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"quotes": [
2,
"double"
],
"strict": 2,
"mocha/no-exclusive-tests": "error"
}
}