-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
64 lines (64 loc) · 1.16 KB
/
.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"predef": [
"require"
, "provide"
, "module"
, "exports"
, "process"
, "describe"
, "context"
, "it"
, "beforeEach"
, "afterEach"
]
, "indent": 2
, "maxdepth": 6
, "maxlen": 120
, "bitwise": false
, "curly": false
, "eqeqeq": false
, "forin": false
, "immed": false
, "latedef": false
, "newcap": true
, "noarg": false
, "noempty": true
, "nonew": false
, "plusplus": false
, "quotmark": "single"
, "regexp": false
, "undef": true
, "unused": "vars"
, "strict": false
, "trailing": true
, "asi": true
, "boss": true
, "eqnull": true
, "es5": false
, "esnext": true
, "evil": true
, "expr": true
, "funcscope": false
, "globalstrict": false
, "iterator": false
, "lastsemic": true
, "laxbreak": true
, "laxcomma": true
, "loopfunc": true
, "multistr": false
, "onecase": false
, "proto": false
, "regexdash": false
, "scripturl": true
, "smarttabs": true
, "shadow": false
, "sub": true
, "supernew": false
, "validthis": true
, "browser": true
, "nonstandard": true
, "nomen": false
, "onevar": false
, "passfail": false
, "devel": false
}