forked from mziccard/node-timsort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
57 lines (57 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
49
50
51
52
53
54
55
56
57
{
"parser": "babel-eslint",
"env": {
"node": true,
"mocha": true,
"browser": true
},
"globals": {
"describe": true,
"it": true,
"before": true,
"after": true,
"beforeEach": true,
"afterEach": true
},
"rules": {
"no-bitwise": 0,
"wrap-iife": [
2,
"any"
],
"max-len": [
2,
120
],
"new-cap": 2,
"no-caller": 2,
"quotes": [
2,
"single"
],
"strict": 0,
"no-undef": 2,
"no-unused-vars": 2,
"no-mixed-spaces-and-tabs": 2,
"eqeqeq": 2,
"no-eq-null": 2,
"consistent-this": 2,
"guard-for-in": 2,
"no-underscore-dangle": 2,
"curly": 2,
"no-multi-spaces": 2,
"key-spacing": 0,
"no-return-assign": 2,
"consistent-return": 2,
"no-shadow": 2,
"comma-dangle": 2,
"no-use-before-define": 1,
"no-empty": 2,
"new-parens": 2,
"no-cond-assign": 2,
"no-fallthrough": 2,
"no-loop-func": 2,
"no-unreachable": 2,
"no-process-exit": 2
}
}