-
Notifications
You must be signed in to change notification settings - Fork 12
/
.eslintrc-web.js
79 lines (76 loc) · 2.44 KB
/
.eslintrc-web.js
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
module.exports = {
'env': {
'es6': true,
'browser': true
},
'extends': './.eslintrc.js',
'globals': {
'Atomics': 'readonly',
'SharedArrayBuffer': 'readonly',
'realityServer': 'writable',
'Block': 'writable',
'BlockLink': 'writable',
'CRAFTING_GRID_HEIGHT': 'writable',
'CRAFTING_GRID_WIDTH': 'writable',
'DEBUG_DATACRAFTING': 'writable',
'Dropzone': 'writable',
'Frame': 'writable',
'Logic': 'writable',
'LogicGUIState': 'writable',
'Objects': 'writable',
'SEA3D': 'writable',
'TEMP_DISABLE_MEMORIES': 'writable',
'THREE': 'writable',
'TWEEN': 'writable',
'WebKitPoint': 'writable',
'boundListeners': 'writable',
'cc': 'writable',
'cout': 'writable',
'createNameSpace': 'writable',
'd3': 'writable',
'editingAnimationsMatrix': 'writable',
'editingState': 'writable',
'frameToObj': 'writable',
'getAllDivsUnderCoordinate': 'writable',
'globalCanvas': 'writable',
'globalDOMCache': 'writable',
'globalProgram': 'writable',
'globalScaleAdjustment': 'writable',
'globalStates': 'writable',
'groupStruct': 'writable',
'httpPort': 'writable',
'hull': 'writable',
'io': 'writable',
'objects': 'writable',
'overlayDiv': 'writable',
'pocketBegin': 'writable',
'pocketDropAnimation': 'writable',
'pocketFrame': 'writable',
'pocketItem': 'writable',
'pocketItemId': 'writable',
'pocketNode': 'writable',
'publicDataCache': 'writable',
'realityEditor': 'writable',
'realityElements': 'writable',
'rotateX': 'writable',
'rotationXMatrix': 'writable',
'rr': 'writable',
'secondMouseDown': 'writable',
'showErrorNotification': 'writable',
'showMessageNotification': 'writable',
'showSuccessNotification': 'writable',
'targetDownloadStates': 'writable',
'timeCorrection': 'writable',
'timeForContentLoaded': 'writable',
'trashButton': 'writable',
'visibleObjectTapDelay': 'writable',
'visibleObjectTapInterval': 'writable',
'webkitConvertPointFromPageToNode': 'writable',
},
'parserOptions': {
'ecmaVersion': 2018
},
'rules': {
'no-undef': 'warn',
}
};