-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
28 lines (28 loc) · 720 Bytes
/
Copy path.jshintrc
File metadata and controls
28 lines (28 loc) · 720 Bytes
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
{
"passfail": false,
"node": true,
"browser": true,
"es5": false,
"esnext": false,
"bitwise": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"predef": ["$", "define", "__app_config__", "setTimeout", "prompt", "confirm", "log", "expect", "describe", "it", "before", "beforeEach", "after", "afterEach", "sinon", "device", "navigator", "__"],
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"maxdepth": 4,
"maxcomplexity": 20,
"maxlen": 120,
"white": false
}