forked from archfirst/bullsfirst-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
38 lines (38 loc) · 783 Bytes
/
.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
{
"bitwise": false,
"curly": true,
"eqeqeq": true,
"forin": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"undef": true,
"unused": true,
"strict": true,
"indent": 4,
"quotmark": "single",
"maxparams": 10,
"maxstatements": 50,
"expr": true,
"maxlen": 150,
"globalstrict": true,
"browser": true,
"globals": {
"angular": true,
"console": true,
"alert": true,
"describe": true,
"it": true,
"beforeEach": true,
"before": true,
"afterEach": true,
"after": true,
"module": true,
"expect": true,
"inject": true,
"require": true,
"spyOn": true,
"jasmine": true
}
}