-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
54 lines (54 loc) · 1.28 KB
/
.eslintrc
File metadata and controls
54 lines (54 loc) · 1.28 KB
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
{
"extends" : "airbnb",
"plugins" : [],
"env" : {
"node" : true,
"mocha" : true
},
"rules" : {
"brace-style" : [
2,
"1tbs",
{
"allowSingleLine" : true
}
],
"comma-dangle" : [
2,
"never"
],
"complexity" : [
2,
6
],
"curly" : 2,
"eqeqeq" : [
2,
"allow-null"
],
"max-statements" : [
2,
30
],
"no-shadow-restricted-names" : 2,
"no-undef" : 2,
"no-use-before-define" : 2,
"radix" : 2,
"semi" : 2,
"space-infix-ops" : 2,
"key-spacing" : 0,
"no-multi-spaces" : 0,
"prefer-rest-params" : 0,
"strict" : 0,
"import/no-extraneous-dependencies" : "off",
"react/require-extension" : "off"
},
"globals" : {
"AnalysisView" : true,
"PollingView" : true,
"Prism" : true,
"Spinner" : true,
"Timer" : true,
"moment" : true
}
}