forked from ziscloud/angular-footable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
56 lines (56 loc) · 1.08 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
{
"predef": [
"jasmine",
"describe",
"it",
"expect",
"beforeEach",
"afterEach",
"module",
"inject",
"$controller",
"$compile",
"angular",
"footable",
"scope"
],
"regexdash": true,
"browser": true,
"sub": true,
"curly": true,
"camelcase": true,
"eqeqeq": true,
"forin": true,
"newcap": true,
"immed": true,
"indent": false,
"latedef": "nofunc",
"noarg": true,
"plusplus": false,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": false,
"trailing": false,
"maxparams": false,
"maxdepth": false,
"maxstatements": false,
"maxcomplexity": false,
"maxlen": 200,
"asi": false,
"boss": false,
"debug": true,
"eqnull": false,
"esnext": false,
"evil": false,
"funcscope": false,
"smarttabs": false,
"shadow": true,
"supernew": true,
"devel": true,
"node": true,
"jquery": true,
"white": false,
"laxbreak": true,
"validthis": true
}