-
Notifications
You must be signed in to change notification settings - Fork 9
/
.jshintrc
44 lines (43 loc) · 883 Bytes
/
.jshintrc
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
{
"bitwise" : true,
"curly" : true,
"eqeqeq" : true,
"forin" : false,
"latedef" : true,
"newcap" : true,
"noarg" : true,
"noempty" : true,
"undef" : true,
"strict" : true,
"trailing" : true,
"evil" : false,
"quotmark" : "single",
"node" : true,
"browser" : true,
"sub" : true,
"smarttabs" : true,
"camelcase" : true,
"maxparams" : 8,
"unused" : "vars",
"globals": {
"after" : true,
"afterEach" : true,
"angular" : true,
"before" : true,
"beforeEach" : true,
"browser" : true,
"by" : true,
"define" : true,
"describe" : true,
"element" : true,
"expect" : true,
"inject" : true,
"it" : true,
"jasmine" : true,
"module" : true,
"protractor" : true,
"require" : true,
"should" : true,
"spyOn" : true
}
}