-
Notifications
You must be signed in to change notification settings - Fork 11
/
.jshintrc
84 lines (84 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"curly": true,
"eqeqeq": true,
"es3": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"nonbsp": true,
"noempty": true,
"nonew": true,
"undef": true,
"strict": true,
"trailing": true,
"eqnull": true,
"browser": true,
"jquery":true,
"node": true,
"devel": true,
"unused": true,
"quotmark" : "double",
"-W014" : true,
"globals": {
"_": false,
"accordion": true,
"AccordionState" : false,
"ajax": true,
"attachment": true,
"attachmentTypeSelect": true,
"attachmentUtils" : true,
"authorization": true,
"comments": true,
"currentUser": true,
"debug": true,
"docgen": true,
"DocModel" : true,
"error": true,
"features": true,
"ga": true,
"getEvent": true,
"gis": true,
"hub": true,
"invites": true,
"ko": false,
"loc": true,
"locationSearch": true,
"LUPAPISTE": true,
"lupapisteApp" :true,
"moment": false,
"municipalities": true,
"notify": true,
"ol" : true,
"OpenLayers": false,
"organizations": true,
"pageutil": true,
"proj4" : true,
"repository": true,
"RequestContext": true,
"taskPageController" : true,
"taskUtil" : true,
"trace": true,
"tree": true,
"uiComponents": true,
"user": true,
"users": true,
"util": true,
"vetuma": true,
"warn": true
},
"exported":
["accordion","ajax","attachment",
"attachmentUtils","attachmentTypeSelect",
"authorization","comments","currentUser",
"DocModel","docgen","expand", "features",
"ga","gis","getEvent","hub","invites","loc",
"locationSearch","vetuma","notify",
"trace","debug","info","warn","error",
"LUPAPISTE","municipalities","organizations",
"pageutil","repository","RequestContext",
"stamping","taskUtil","taskPageController",
"tree", "uiComponents",
"user","users","util", "lupapisteApp"]
}