-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
31 lines (31 loc) · 940 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
/* -*- mode: javascript -*-
* See www.jshint.com/docs/
* Run manually to check for syntax errors here:
* jshint myfile.js
*/
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"indent": 2,
"latedef": true,
"maxcomplexity": 42,
"maxdepth": 5,
"maxlen": 80,
"maxparams": 10,
"maxstatements": 30,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"plusplus": true,
"quotmark": "single",
"regexp": true,
"strict": true,
"trailing": true,
"undef": true,
"unused": true
}