forked from zappan/angular-speakingurl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
20 lines (19 loc) · 645 Bytes
/
.jshintrc
File metadata and controls
20 lines (19 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* jshint quotmark: false */
{
"bitwise" : true // disallows bitwise operators (see jsHint docs why; override per-file if needed)
, "camelcase" : true // variable naming check for consistency
, "curly" : true
, "eqeqeq" : true
, "esnext" : true
, "indent" : false
, "immed" : true
, "latedef" : true
, "laxcomma" : true
, "newcap" : true
, "noarg" : true
, "node" : true // allows node globals
, "onevar" : true
, "quotmark" : "single"
, "strict" : false // will complain on missing 'use strict' => turn on for compiled code jshinting
, "undef" : true
}