forked from evanshortiss/obd-parser-serial-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
42 lines (42 loc) · 745 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": {
"it": true,
"describe": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"Promise": true
},
"curly": true,
"camelcase": false,
"evil": false,
"browser": true,
"trailing": true,
"sub": true,
"eqeqeq": false,
"eqnull": true,
"devel": false,
"smarttabs": false,
"laxbreak": false,
"laxcomma": true,
"jquery": false,
"loopfunc": true,
"expr": true,
"indent": 2,
"bitwise": true,
"noarg": true,
"noempty": true,
"nonew": true,
"undef": true,
"boss": true,
"node": true,
"newcap": true,
"quotmark": "single",
"unused": true,
"strict": true,
"maxparams": 5,
"maxdepth": 5,
"maxstatements": 20,
"maxcomplexity": 10
}