-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
42 lines (42 loc) · 769 Bytes
/
Copy path.jshintrc
File metadata and controls
42 lines (42 loc) · 769 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"globals": {
"angular": true,
"after": false,
"before": false,
"beforeEach": false,
"browser": false,
"afterEach": false,
"describe": false,
"element": false,
"expect": false,
"it": false,
"inject": false,
"spyOn": false,
"medApp": false,
"$": false,
"URI": false,
"jasmine": true,
"define": false,
"require": true
},
"indent": 4,
"latedef": "nofunc",
"maxerr": 100,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
"trailing": true,
"undef": true,
"unused": true,
"strict": true,
"globalstrict": true
}