forked from formly-js/angular-formly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
41 lines (39 loc) · 696 Bytes
/
Copy path.jshintrc
File metadata and controls
41 lines (39 loc) · 696 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
{
"curly": true,
"eqeqeq": true,
"bitwise": true,
"camelcase": true,
"esnext": true,
"expr": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"quotmark": "single",
"undef": true,
"unused": "vars",
"trailing": true,
"maxdepth": 4,
"maxstatements": 30,
"maxcomplexity": 5,
"maxlen": 120,
"browser": true,
"node": true,
"globals": {
"angular": true,
"ON_TEST": true,
"ON_DEV": true,
"ON_PROD": true,
"VERSION": true,
"inject": true,
"describe": true,
"it": true,
"expect": true,
"beforeEach": true
}
}