-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
42 lines (41 loc) · 893 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
{
"globals": {
"angular": true,
"jQuery": true,
"console": true,
"module": true,
"document": true
},
"latedef": "nofunc",
"indent": 4,
"node": true,
"bitwise": true,
"camelcase": false,
"immed": true,
"newcap": true,
"quotmark": "single",
"strict": true,
"multistr": true,
"debug": false,
"undef": true,
"plusplus": false,
"eqeqeq": true,
"validthis": false,
"curly": true,
"expr": true,
"forin": true,
"laxcomma": true,
"maxerr": "50",
"noarg": true,
"noempty": true,
"smarttabs": false,
"trailing": true,
"unused": false,
"white": false,
"browser": true,
"devel": true,
"jquery": true,
"esnext": true,
"-W117": true
}
// -W117 disables all the variable not defined error instead of useing the jshint globals directive