forked from mix/schenkerian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
72 lines (72 loc) · 1.28 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
65
66
67
68
69
70
71
72
{
"predef": [
"__dirname"
, "require"
, "provide"
, "module"
, "exports"
, "process"
, "global"
, "describe"
, "context"
, "it"
, "expect"
, "console"
, "sinon"
, "beforeEach"
, "afterEach"
, "before"
, "after"
, "noop"
]
, "indent": 2
, "maxdepth": 6
, "maxlen": 140
, "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
}