-
Notifications
You must be signed in to change notification settings - Fork 1
/
.jshintrc
42 lines (42 loc) · 924 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
{
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
// Documentation: http://www.jshint.com/docs/
"browser": true,
"esnext": true,
"globals": {
"global": true,
"Buffer": true,
"__dirname": true,
"process": true,
"module": true,
"console": true,
"alert": true,
"confirm": true,
"unescape": true,
"escape": true,
"require": true,
"define": true,
"Backbone": true,
"jQuery": true,
"$": true,
"_": true,
"Woodhouse": true,
"App": true,
"mixpanel": true,
"config": true,
"Air": true,
"Promise": true
},
"globalstrict": true,
"quotmark": false,
"smarttabs": true,
"trailing": true,
"undef": true,
"unused": false,
"eqeqeq": true,
"expr": true,
"boss": true,
"sub": true,
"loopfunc": true
}