-
Notifications
You must be signed in to change notification settings - Fork 26
/
.eslintrc.json
107 lines (107 loc) · 3.33 KB
/
.eslintrc.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"env": {
"browser": true,
"es2020": true,
"jquery": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"no-mixed-spaces-and-tabs": "warn",
"no-unused-vars": "warn",
"quotes": [
"warn", "double", { "avoidEscape": true, "allowTemplateLiterals": true }
],
"class-methods-use-this": ["off", {
"exceptMethods": ["getData", "_updateObject"]
}
],
"max-depth": ["off", { "max": 2 }],
"max-statements-per-line": ["warn", { "max": 2 }]
},
"globals": {
"ROUTE_PREFIX": "readonly",
"Roll": "readonly",
"DiceTerm": "readonly",
"ChatMessage": "readonly",
"SetupConfiguration": "readonly",
"ImagePopout": "readonly",
"Actors": "readonly",
"caches": "readonly",
"ondevicemotion": "readonly",
"ondeviceorientation": "readonly",
"ondeviceorientationabsolute": "readonly",
"$": "readonly",
"jQuery": "readonly",
"Handlebars": "readonly",
"HandlebarsIntl": "readonly",
"HowlerGlobal": "readonly",
"Howler": "readonly",
"Howl": "readonly",
"Sound": "readonly",
"WebFont": "readonly",
"PIXI": "readonly",
"io": "readonly",
"tinymce": "readonly",
"tinyMCE": "readonly",
"easyrtc_lang": "readonly",
"adapter": "readonly",
"easyrtc": "readonly",
"duplicate": "readonly",
"getType": "readonly",
"invertObject": "readonly",
"filterObject": "readonly",
"flattenObject": "readonly",
"expandObject": "readonly",
"isObjectEmpty": "readonly",
"mergeObject": "readonly",
"diffObject": "readonly",
"hasProperty": "readonly",
"getProperty": "readonly",
"setProperty": "readonly",
"encodeURL": "readonly",
"rgbToHsv": "readonly",
"hsvToRgb": "readonly",
"rgbToHex": "readonly",
"hexToRGB": "readonly",
"hexToRGBAString": "readonly",
"colorStringToHex": "readonly",
"isNewerVersion": "readonly",
"randomID": "readonly",
"loadFont": "readonly",
"saveDataToFile": "readonly",
"readTextFromFile": "readonly",
"fromUuid": "readonly",
"_handleMouseWheelInputChange": "readonly",
"getTemplate": "readonly",
"loadTemplates": "readonly",
"renderTemplate": "readonly",
"srcExists": "readonly",
"getTexture": "readonly",
"loadTexture": "readonly",
"CONST": "readonly",
"toDegrees": "readonly",
"normalizeDegrees": "readonly",
"toRadians": "readonly",
"normalizeRadians": "readonly",
"validateForm": "readonly",
"timeSince": "readonly",
"_templateCache": "readonly",
"TextEditor": "readonly",
"CONFIG": "readonly",
"socket": "readonly",
"ui": "readonly",
"canvas": "readonly",
"keyboard": "readonly",
"Hooks": "readonly",
"SortingHelpers": "readonly",
"math": "readonly",
"game": "readonly",
"FormDataExtended": "readonly",
"foundry": "readonly"
}
}