forked from SC5/gulp-bobrsass-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
35 lines (35 loc) · 794 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
//
// Strict JSHint options for browser environments that use Browserify module
// wrapping. Use more lenient options if you don't need to work with old
// browsers (e.g. IE8-9).
//
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"es3": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"nonbsp": true,
"nonew": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
// Due to Browserify use, use the 'node' mode than file level strict mode
//"strict": true,
"trailing": true,
"maxparams": 4,
"maxdepth": 3,
"maxdepth": 10,
"smarttabs": true,
// Imply the node.js (Browserify) and browser environments
"node": true,
"browser": true
}