forked from INTER-Mediator/INTER-Mediator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
executable file
·37 lines (37 loc) · 958 Bytes
/
.eslintrc.js
File metadata and controls
executable file
·37 lines (37 loc) · 958 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
module.exports = {
'env': {
'browser': true
},
'extends': 'standard',
'globals': {
'INTERMediator': false,
'INTERMediatorLib': false,
'INTERMediator_DBAdapter': false,
'INTERMediatorOnPage': false,
'IMLib': false,
'IMLibNodeGraph': false,
'IMLibElement': false,
'IMLibContextPool': false,
'IMLibLocalContext': false,
'IMLibContext': false,
'IMLibCalc': false,
'IMLibEventDispatch': false,
'IMLibMouseEventDispatch': false,
'IMLibKeyDownEventDispatch': false,
'IMLibKeyUpEventDispatch': false,
'IMLibInputEventDispatch': false,
'IMLibChangeEventDispatch': false,
'IMLibBlurEventDispatch': false,
'IMLibEventResponder': false,
'IMLibPageNavigation': false,
'IMParts_Catalog': false,
'IMLibQueue': false,
'IMLibUI': false,
'Parser': false,
'Pusher': false,
'jsSHA': false,
'Base64': false,
'console': false,
'Exception': false
}
}