@schoero/configs 1.5.20 → 1.5.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cspell/dict/names.txt +4 -1
- package/eslint/javascript.js +1 -1
- package/eslint/jsx.js +0 -1
- package/eslint/typescript.js +3 -3
- package/oxlint/eslint/better-tailwindcss.json +21 -0
- package/oxlint/globals.json +793 -0
- package/oxlint/ignore.json +19 -0
- package/oxlint/index.json +8 -0
- package/oxlint/javascript.json +76 -0
- package/oxlint/tailwind.json +5 -0
- package/oxlint/typescript.json +50 -0
- package/package.json +33 -20
package/cspell/dict/names.txt
CHANGED
package/eslint/javascript.js
CHANGED
package/eslint/jsx.js
CHANGED
|
@@ -40,7 +40,6 @@ export const jsx = [
|
|
|
40
40
|
"eslint-plugin-stylistic/jsx-indent-props": ["warn", 2],
|
|
41
41
|
"eslint-plugin-stylistic/jsx-max-props-per-line": ["warn", { maximum: 1, when: "multiline" }],
|
|
42
42
|
"eslint-plugin-stylistic/jsx-one-expression-per-line": ["warn", { allow: "single-line" }],
|
|
43
|
-
"eslint-plugin-stylistic/jsx-props-no-multi-spaces": "warn",
|
|
44
43
|
"eslint-plugin-stylistic/jsx-self-closing-comp": "warn",
|
|
45
44
|
"eslint-plugin-stylistic/jsx-sort-props": ["warn", { ignoreCase: true, callbacksLast: true, shorthandFirst: true, multiline: "last" }],
|
|
46
45
|
"eslint-plugin-stylistic/jsx-tag-spacing": ["warn", { beforeClosing: "never", beforeSelfClosing: "always" }],
|
package/eslint/typescript.js
CHANGED
|
@@ -67,7 +67,7 @@ export const typescript = [
|
|
|
67
67
|
order: "asc",
|
|
68
68
|
ignoreCase: true,
|
|
69
69
|
partitionByNewLine: true,
|
|
70
|
-
|
|
70
|
+
groups: ["required"]
|
|
71
71
|
}
|
|
72
72
|
],
|
|
73
73
|
"eslint-plugin-perfectionist/sort-interfaces": [
|
|
@@ -77,7 +77,7 @@ export const typescript = [
|
|
|
77
77
|
order: "asc",
|
|
78
78
|
ignoreCase: true,
|
|
79
79
|
partitionByNewLine: false,
|
|
80
|
-
|
|
80
|
+
groups: ["required"]
|
|
81
81
|
}
|
|
82
82
|
],
|
|
83
83
|
"eslint-plugin-perfectionist/sort-union-types": [
|
|
@@ -127,7 +127,7 @@ export const typescript = [
|
|
|
127
127
|
order: "asc",
|
|
128
128
|
ignoreCase: true,
|
|
129
129
|
partitionByComment: false,
|
|
130
|
-
sortByValue:
|
|
130
|
+
sortByValue: 'never'
|
|
131
131
|
}
|
|
132
132
|
],
|
|
133
133
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
{
|
|
3
|
+
"$schema": "../../node_modules/oxlint/configuration_schema.json",
|
|
4
|
+
"overrides": [
|
|
5
|
+
{
|
|
6
|
+
"files": ["**/*.{js,ts,jsx,cjs,mjs,tsx,css}"],
|
|
7
|
+
"jsPlugins": [
|
|
8
|
+
"eslint-plugin-better-tailwindcss"
|
|
9
|
+
],
|
|
10
|
+
"rules": {
|
|
11
|
+
"better-tailwindcss/enforce-canonical-classes": ["warn"],
|
|
12
|
+
"better-tailwindcss/enforce-consistent-class-order": ["warn", { "order": "strict" }],
|
|
13
|
+
"better-tailwindcss/enforce-consistent-line-wrapping": ["warn", { "printWidth": 119 }],
|
|
14
|
+
"better-tailwindcss/no-conflicting-classes": "warn",
|
|
15
|
+
"better-tailwindcss/no-deprecated-classes": "warn",
|
|
16
|
+
"better-tailwindcss/no-duplicate-classes": "warn",
|
|
17
|
+
"better-tailwindcss/no-unknown-classes": "warn",
|
|
18
|
+
"better-tailwindcss/no-unnecessary-whitespace": "warn"
|
|
19
|
+
}
|
|
20
|
+
}]
|
|
21
|
+
}
|
|
@@ -0,0 +1,793 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../node_modules/oxlint/configuration_schema.json",
|
|
3
|
+
"overrides": [{
|
|
4
|
+
"env": {
|
|
5
|
+
"commonjs": true,
|
|
6
|
+
"es2026": true
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"**/*.{js,jsx,cjs,mjs,ts,tsx,cts}"
|
|
10
|
+
],
|
|
11
|
+
"globals": {
|
|
12
|
+
"__dirname": "readonly",
|
|
13
|
+
"__filename": "readonly",
|
|
14
|
+
"AbortController": "readonly",
|
|
15
|
+
"AbortSignal": "readonly",
|
|
16
|
+
"addEventListener": "readonly",
|
|
17
|
+
"alert": "readonly",
|
|
18
|
+
"AnalyserNode": "readonly",
|
|
19
|
+
"Animation": "readonly",
|
|
20
|
+
"AnimationEffectReadOnly": "readonly",
|
|
21
|
+
"AnimationEffectTiming": "readonly",
|
|
22
|
+
"AnimationEffectTimingReadOnly": "readonly",
|
|
23
|
+
"AnimationEvent": "readonly",
|
|
24
|
+
"AnimationPlaybackEvent": "readonly",
|
|
25
|
+
"AnimationTimeline": "readonly",
|
|
26
|
+
"applicationCache": "readonly",
|
|
27
|
+
"ApplicationCache": "readonly",
|
|
28
|
+
"ApplicationCacheErrorEvent": "readonly",
|
|
29
|
+
"atob": "readonly",
|
|
30
|
+
"Attr": "readonly",
|
|
31
|
+
"Audio": "readonly",
|
|
32
|
+
"AudioBuffer": "readonly",
|
|
33
|
+
"AudioBufferSourceNode": "readonly",
|
|
34
|
+
"AudioContext": "readonly",
|
|
35
|
+
"AudioDestinationNode": "readonly",
|
|
36
|
+
"AudioListener": "readonly",
|
|
37
|
+
"AudioNode": "readonly",
|
|
38
|
+
"AudioParam": "readonly",
|
|
39
|
+
"AudioProcessingEvent": "readonly",
|
|
40
|
+
"AudioScheduledSourceNode": "readonly",
|
|
41
|
+
"AudioWorkletGlobalScope": "readonly",
|
|
42
|
+
"AudioWorkletNode": "readonly",
|
|
43
|
+
"AudioWorkletProcessor": "readonly",
|
|
44
|
+
"BarProp": "readonly",
|
|
45
|
+
"BaseAudioContext": "readonly",
|
|
46
|
+
"BatteryManager": "readonly",
|
|
47
|
+
"BeforeUnloadEvent": "readonly",
|
|
48
|
+
"BiquadFilterNode": "readonly",
|
|
49
|
+
"Blob": "readonly",
|
|
50
|
+
"BlobEvent": "readonly",
|
|
51
|
+
"blur": "readonly",
|
|
52
|
+
"BroadcastChannel": "readonly",
|
|
53
|
+
"btoa": "readonly",
|
|
54
|
+
"BudgetService": "readonly",
|
|
55
|
+
"Buffer": "readonly",
|
|
56
|
+
"ByteLengthQueuingStrategy": "readonly",
|
|
57
|
+
"Cache": "readonly",
|
|
58
|
+
"caches": "readonly",
|
|
59
|
+
"CacheStorage": "readonly",
|
|
60
|
+
"cancelAnimationFrame": "readonly",
|
|
61
|
+
"cancelIdleCallback": "readonly",
|
|
62
|
+
"CanvasCaptureMediaStreamTrack": "readonly",
|
|
63
|
+
"CanvasGradient": "readonly",
|
|
64
|
+
"CanvasPattern": "readonly",
|
|
65
|
+
"CanvasRenderingContext2D": "readonly",
|
|
66
|
+
"ChannelMergerNode": "readonly",
|
|
67
|
+
"ChannelSplitterNode": "readonly",
|
|
68
|
+
"CharacterData": "readonly",
|
|
69
|
+
"clearImmediate": "readonly",
|
|
70
|
+
"clearInterval": "readonly",
|
|
71
|
+
"clearTimeout": "readonly",
|
|
72
|
+
"clientInformation": "readonly",
|
|
73
|
+
"ClipboardEvent": "readonly",
|
|
74
|
+
"ClipboardItem": "readonly",
|
|
75
|
+
"close": "writable",
|
|
76
|
+
"closed": "readonly",
|
|
77
|
+
"CloseEvent": "readonly",
|
|
78
|
+
"Comment": "readonly",
|
|
79
|
+
"CompositionEvent": "readonly",
|
|
80
|
+
"CompressionStream": "readonly",
|
|
81
|
+
"confirm": "readonly",
|
|
82
|
+
"console": "readonly",
|
|
83
|
+
"ConstantSourceNode": "readonly",
|
|
84
|
+
"constructor": "readonly",
|
|
85
|
+
"ConvolverNode": "readonly",
|
|
86
|
+
"CountQueuingStrategy": "readonly",
|
|
87
|
+
"createImageBitmap": "readonly",
|
|
88
|
+
"Credential": "readonly",
|
|
89
|
+
"CredentialsContainer": "readonly",
|
|
90
|
+
"crypto": "readonly",
|
|
91
|
+
"Crypto": "readonly",
|
|
92
|
+
"CryptoKey": "readonly",
|
|
93
|
+
"CSS": "readonly",
|
|
94
|
+
"CSSConditionRule": "readonly",
|
|
95
|
+
"CSSFontFaceRule": "readonly",
|
|
96
|
+
"CSSGroupingRule": "readonly",
|
|
97
|
+
"CSSImportRule": "readonly",
|
|
98
|
+
"CSSKeyframeRule": "readonly",
|
|
99
|
+
"CSSKeyframesRule": "readonly",
|
|
100
|
+
"CSSMatrixComponent": "readonly",
|
|
101
|
+
"CSSMediaRule": "readonly",
|
|
102
|
+
"CSSNamespaceRule": "readonly",
|
|
103
|
+
"CSSPageRule": "readonly",
|
|
104
|
+
"CSSPerspective": "readonly",
|
|
105
|
+
"CSSRotate": "readonly",
|
|
106
|
+
"CSSRule": "readonly",
|
|
107
|
+
"CSSRuleList": "readonly",
|
|
108
|
+
"CSSScale": "readonly",
|
|
109
|
+
"CSSSkew": "readonly",
|
|
110
|
+
"CSSSkewX": "readonly",
|
|
111
|
+
"CSSSkewY": "readonly",
|
|
112
|
+
"CSSStyleDeclaration": "readonly",
|
|
113
|
+
"CSSStyleRule": "readonly",
|
|
114
|
+
"CSSStyleSheet": "readonly",
|
|
115
|
+
"CSSSupportsRule": "readonly",
|
|
116
|
+
"CSSTransformValue": "readonly",
|
|
117
|
+
"CSSTranslate": "readonly",
|
|
118
|
+
"CustomElementRegistry": "readonly",
|
|
119
|
+
"customElements": "readonly",
|
|
120
|
+
"CustomEvent": "readonly",
|
|
121
|
+
"DataTransfer": "readonly",
|
|
122
|
+
"DataTransferItem": "readonly",
|
|
123
|
+
"DataTransferItemList": "readonly",
|
|
124
|
+
"DecompressionStream": "readonly",
|
|
125
|
+
"defaultstatus": "readonly",
|
|
126
|
+
"defaultStatus": "readonly",
|
|
127
|
+
"DelayNode": "readonly",
|
|
128
|
+
"DeviceMotionEvent": "readonly",
|
|
129
|
+
"DeviceOrientationEvent": "readonly",
|
|
130
|
+
"devicePixelRatio": "readonly",
|
|
131
|
+
"dispatchEvent": "readonly",
|
|
132
|
+
"document": "readonly",
|
|
133
|
+
"Document": "readonly",
|
|
134
|
+
"DocumentFragment": "readonly",
|
|
135
|
+
"DocumentType": "readonly",
|
|
136
|
+
"DOMError": "readonly",
|
|
137
|
+
"DOMException": "readonly",
|
|
138
|
+
"DOMImplementation": "readonly",
|
|
139
|
+
"DOMMatrix": "readonly",
|
|
140
|
+
"DOMMatrixReadOnly": "readonly",
|
|
141
|
+
"DOMParser": "readonly",
|
|
142
|
+
"DOMPoint": "readonly",
|
|
143
|
+
"DOMPointReadOnly": "readonly",
|
|
144
|
+
"DOMQuad": "readonly",
|
|
145
|
+
"DOMRect": "readonly",
|
|
146
|
+
"DOMRectList": "readonly",
|
|
147
|
+
"DOMRectReadOnly": "readonly",
|
|
148
|
+
"DOMStringList": "readonly",
|
|
149
|
+
"DOMStringMap": "readonly",
|
|
150
|
+
"DOMTokenList": "readonly",
|
|
151
|
+
"DragEvent": "readonly",
|
|
152
|
+
"DynamicsCompressorNode": "readonly",
|
|
153
|
+
"Element": "readonly",
|
|
154
|
+
"ErrorEvent": "readonly",
|
|
155
|
+
"event": "readonly",
|
|
156
|
+
"Event": "readonly",
|
|
157
|
+
"EventSource": "readonly",
|
|
158
|
+
"EventTarget": "readonly",
|
|
159
|
+
"external": "readonly",
|
|
160
|
+
"fetch": "readonly",
|
|
161
|
+
"File": "readonly",
|
|
162
|
+
"FileList": "readonly",
|
|
163
|
+
"FileReader": "readonly",
|
|
164
|
+
"FileReaderSync": "readonly",
|
|
165
|
+
"find": "readonly",
|
|
166
|
+
"focus": "readonly",
|
|
167
|
+
"FocusEvent": "readonly",
|
|
168
|
+
"FontFace": "readonly",
|
|
169
|
+
"FontFaceSetLoadEvent": "readonly",
|
|
170
|
+
"FormData": "readonly",
|
|
171
|
+
"FormDataEvent": "readonly",
|
|
172
|
+
"frameElement": "readonly",
|
|
173
|
+
"frames": "readonly",
|
|
174
|
+
"GainNode": "readonly",
|
|
175
|
+
"Gamepad": "readonly",
|
|
176
|
+
"GamepadButton": "readonly",
|
|
177
|
+
"GamepadEvent": "readonly",
|
|
178
|
+
"getComputedStyle": "readonly",
|
|
179
|
+
"getSelection": "readonly",
|
|
180
|
+
"HashChangeEvent": "readonly",
|
|
181
|
+
"hasOwnProperty": "readonly",
|
|
182
|
+
"Headers": "readonly",
|
|
183
|
+
"history": "readonly",
|
|
184
|
+
"History": "readonly",
|
|
185
|
+
"HTMLAllCollection": "readonly",
|
|
186
|
+
"HTMLAnchorElement": "readonly",
|
|
187
|
+
"HTMLAreaElement": "readonly",
|
|
188
|
+
"HTMLAudioElement": "readonly",
|
|
189
|
+
"HTMLBaseElement": "readonly",
|
|
190
|
+
"HTMLBodyElement": "readonly",
|
|
191
|
+
"HTMLBRElement": "readonly",
|
|
192
|
+
"HTMLButtonElement": "readonly",
|
|
193
|
+
"HTMLCanvasElement": "readonly",
|
|
194
|
+
"HTMLCollection": "readonly",
|
|
195
|
+
"HTMLContentElement": "readonly",
|
|
196
|
+
"HTMLDataElement": "readonly",
|
|
197
|
+
"HTMLDataListElement": "readonly",
|
|
198
|
+
"HTMLDetailsElement": "readonly",
|
|
199
|
+
"HTMLDialogElement": "readonly",
|
|
200
|
+
"HTMLDirectoryElement": "readonly",
|
|
201
|
+
"HTMLDivElement": "readonly",
|
|
202
|
+
"HTMLDListElement": "readonly",
|
|
203
|
+
"HTMLDocument": "readonly",
|
|
204
|
+
"HTMLElement": "readonly",
|
|
205
|
+
"HTMLEmbedElement": "readonly",
|
|
206
|
+
"HTMLFieldSetElement": "readonly",
|
|
207
|
+
"HTMLFontElement": "readonly",
|
|
208
|
+
"HTMLFormControlsCollection": "readonly",
|
|
209
|
+
"HTMLFormElement": "readonly",
|
|
210
|
+
"HTMLFrameElement": "readonly",
|
|
211
|
+
"HTMLFrameSetElement": "readonly",
|
|
212
|
+
"HTMLHeadElement": "readonly",
|
|
213
|
+
"HTMLHeadingElement": "readonly",
|
|
214
|
+
"HTMLHRElement": "readonly",
|
|
215
|
+
"HTMLHtmlElement": "readonly",
|
|
216
|
+
"HTMLIFrameElement": "readonly",
|
|
217
|
+
"HTMLImageElement": "readonly",
|
|
218
|
+
"HTMLInputElement": "readonly",
|
|
219
|
+
"HTMLLabelElement": "readonly",
|
|
220
|
+
"HTMLLegendElement": "readonly",
|
|
221
|
+
"HTMLLIElement": "readonly",
|
|
222
|
+
"HTMLLinkElement": "readonly",
|
|
223
|
+
"HTMLMapElement": "readonly",
|
|
224
|
+
"HTMLMarqueeElement": "readonly",
|
|
225
|
+
"HTMLMediaElement": "readonly",
|
|
226
|
+
"HTMLMenuElement": "readonly",
|
|
227
|
+
"HTMLMetaElement": "readonly",
|
|
228
|
+
"HTMLMeterElement": "readonly",
|
|
229
|
+
"HTMLModElement": "readonly",
|
|
230
|
+
"HTMLObjectElement": "readonly",
|
|
231
|
+
"HTMLOListElement": "readonly",
|
|
232
|
+
"HTMLOptGroupElement": "readonly",
|
|
233
|
+
"HTMLOptionElement": "readonly",
|
|
234
|
+
"HTMLOptionsCollection": "readonly",
|
|
235
|
+
"HTMLOutputElement": "readonly",
|
|
236
|
+
"HTMLParagraphElement": "readonly",
|
|
237
|
+
"HTMLParamElement": "readonly",
|
|
238
|
+
"HTMLPictureElement": "readonly",
|
|
239
|
+
"HTMLPreElement": "readonly",
|
|
240
|
+
"HTMLProgressElement": "readonly",
|
|
241
|
+
"HTMLQuoteElement": "readonly",
|
|
242
|
+
"HTMLScriptElement": "readonly",
|
|
243
|
+
"HTMLSelectElement": "readonly",
|
|
244
|
+
"HTMLShadowElement": "readonly",
|
|
245
|
+
"HTMLSlotElement": "readonly",
|
|
246
|
+
"HTMLSourceElement": "readonly",
|
|
247
|
+
"HTMLSpanElement": "readonly",
|
|
248
|
+
"HTMLStyleElement": "readonly",
|
|
249
|
+
"HTMLTableCaptionElement": "readonly",
|
|
250
|
+
"HTMLTableCellElement": "readonly",
|
|
251
|
+
"HTMLTableColElement": "readonly",
|
|
252
|
+
"HTMLTableElement": "readonly",
|
|
253
|
+
"HTMLTableRowElement": "readonly",
|
|
254
|
+
"HTMLTableSectionElement": "readonly",
|
|
255
|
+
"HTMLTemplateElement": "readonly",
|
|
256
|
+
"HTMLTextAreaElement": "readonly",
|
|
257
|
+
"HTMLTimeElement": "readonly",
|
|
258
|
+
"HTMLTitleElement": "readonly",
|
|
259
|
+
"HTMLTrackElement": "readonly",
|
|
260
|
+
"HTMLUListElement": "readonly",
|
|
261
|
+
"HTMLUnknownElement": "readonly",
|
|
262
|
+
"HTMLVideoElement": "readonly",
|
|
263
|
+
"IDBCursor": "readonly",
|
|
264
|
+
"IDBCursorWithValue": "readonly",
|
|
265
|
+
"IDBDatabase": "readonly",
|
|
266
|
+
"IDBFactory": "readonly",
|
|
267
|
+
"IDBIndex": "readonly",
|
|
268
|
+
"IDBKeyRange": "readonly",
|
|
269
|
+
"IDBObjectStore": "readonly",
|
|
270
|
+
"IDBOpenDBRequest": "readonly",
|
|
271
|
+
"IDBRequest": "readonly",
|
|
272
|
+
"IDBTransaction": "readonly",
|
|
273
|
+
"IDBVersionChangeEvent": "readonly",
|
|
274
|
+
"IdleDeadline": "readonly",
|
|
275
|
+
"IIRFilterNode": "readonly",
|
|
276
|
+
"Image": "readonly",
|
|
277
|
+
"ImageBitmap": "readonly",
|
|
278
|
+
"ImageBitmapRenderingContext": "readonly",
|
|
279
|
+
"ImageCapture": "readonly",
|
|
280
|
+
"ImageData": "readonly",
|
|
281
|
+
"importScripts": "writable",
|
|
282
|
+
"indexedDB": "readonly",
|
|
283
|
+
"innerHeight": "readonly",
|
|
284
|
+
"innerWidth": "readonly",
|
|
285
|
+
"InputEvent": "readonly",
|
|
286
|
+
"IntersectionObserver": "readonly",
|
|
287
|
+
"IntersectionObserverEntry": "readonly",
|
|
288
|
+
"isPrototypeOf": "readonly",
|
|
289
|
+
"isSecureContext": "readonly",
|
|
290
|
+
"KeyboardEvent": "readonly",
|
|
291
|
+
"KeyframeEffect": "readonly",
|
|
292
|
+
"KeyframeEffectReadOnly": "readonly",
|
|
293
|
+
"length": "readonly",
|
|
294
|
+
"localStorage": "readonly",
|
|
295
|
+
"location": "readonly",
|
|
296
|
+
"Location": "readonly",
|
|
297
|
+
"locationbar": "readonly",
|
|
298
|
+
"matchMedia": "readonly",
|
|
299
|
+
"MediaDeviceInfo": "readonly",
|
|
300
|
+
"MediaDevices": "readonly",
|
|
301
|
+
"MediaElementAudioSourceNode": "readonly",
|
|
302
|
+
"MediaEncryptedEvent": "readonly",
|
|
303
|
+
"MediaError": "readonly",
|
|
304
|
+
"MediaKeyMessageEvent": "readonly",
|
|
305
|
+
"MediaKeySession": "readonly",
|
|
306
|
+
"MediaKeyStatusMap": "readonly",
|
|
307
|
+
"MediaKeySystemAccess": "readonly",
|
|
308
|
+
"MediaList": "readonly",
|
|
309
|
+
"MediaMetadata": "readonly",
|
|
310
|
+
"MediaQueryList": "readonly",
|
|
311
|
+
"MediaQueryListEvent": "readonly",
|
|
312
|
+
"MediaRecorder": "readonly",
|
|
313
|
+
"MediaSettingsRange": "readonly",
|
|
314
|
+
"MediaSource": "readonly",
|
|
315
|
+
"MediaStream": "readonly",
|
|
316
|
+
"MediaStreamAudioDestinationNode": "readonly",
|
|
317
|
+
"MediaStreamAudioSourceNode": "readonly",
|
|
318
|
+
"MediaStreamConstraints": "readonly",
|
|
319
|
+
"MediaStreamEvent": "readonly",
|
|
320
|
+
"MediaStreamTrack": "readonly",
|
|
321
|
+
"MediaStreamTrackEvent": "readonly",
|
|
322
|
+
"menubar": "readonly",
|
|
323
|
+
"MessageChannel": "readonly",
|
|
324
|
+
"MessageEvent": "readonly",
|
|
325
|
+
"MessagePort": "readonly",
|
|
326
|
+
"MIDIAccess": "readonly",
|
|
327
|
+
"MIDIConnectionEvent": "readonly",
|
|
328
|
+
"MIDIInput": "readonly",
|
|
329
|
+
"MIDIInputMap": "readonly",
|
|
330
|
+
"MIDIMessageEvent": "readonly",
|
|
331
|
+
"MIDIOutput": "readonly",
|
|
332
|
+
"MIDIOutputMap": "readonly",
|
|
333
|
+
"MIDIPort": "readonly",
|
|
334
|
+
"MimeType": "readonly",
|
|
335
|
+
"MimeTypeArray": "readonly",
|
|
336
|
+
"MouseEvent": "readonly",
|
|
337
|
+
"moveBy": "readonly",
|
|
338
|
+
"moveTo": "readonly",
|
|
339
|
+
"MutationEvent": "readonly",
|
|
340
|
+
"MutationObserver": "readonly",
|
|
341
|
+
"MutationRecord": "readonly",
|
|
342
|
+
"name": "readonly",
|
|
343
|
+
"NamedNodeMap": "readonly",
|
|
344
|
+
"NavigationPreloadManager": "readonly",
|
|
345
|
+
"navigator": "readonly",
|
|
346
|
+
"Navigator": "readonly",
|
|
347
|
+
"NavigatorUAData": "readonly",
|
|
348
|
+
"NetworkInformation": "readonly",
|
|
349
|
+
"Node": "readonly",
|
|
350
|
+
"NodeFilter": "readonly",
|
|
351
|
+
"NodeIterator": "readonly",
|
|
352
|
+
"NodeList": "readonly",
|
|
353
|
+
"Notification": "readonly",
|
|
354
|
+
"OfflineAudioCompletionEvent": "readonly",
|
|
355
|
+
"OfflineAudioContext": "readonly",
|
|
356
|
+
"offscreenBuffering": "readonly",
|
|
357
|
+
"OffscreenCanvas": "writable",
|
|
358
|
+
"OffscreenCanvasRenderingContext2D": "readonly",
|
|
359
|
+
"onabort": "writable",
|
|
360
|
+
"onafterprint": "writable",
|
|
361
|
+
"onanimationend": "writable",
|
|
362
|
+
"onanimationiteration": "writable",
|
|
363
|
+
"onanimationstart": "writable",
|
|
364
|
+
"onappinstalled": "writable",
|
|
365
|
+
"onauxclick": "writable",
|
|
366
|
+
"onbeforeinstallprompt": "writable",
|
|
367
|
+
"onbeforeprint": "writable",
|
|
368
|
+
"onbeforeunload": "writable",
|
|
369
|
+
"onblur": "writable",
|
|
370
|
+
"oncancel": "writable",
|
|
371
|
+
"oncanplay": "writable",
|
|
372
|
+
"oncanplaythrough": "writable",
|
|
373
|
+
"onchange": "writable",
|
|
374
|
+
"onclick": "writable",
|
|
375
|
+
"onclose": "writable",
|
|
376
|
+
"onconnect": "writable",
|
|
377
|
+
"oncontextmenu": "writable",
|
|
378
|
+
"oncuechange": "writable",
|
|
379
|
+
"ondblclick": "writable",
|
|
380
|
+
"ondevicemotion": "writable",
|
|
381
|
+
"ondeviceorientation": "writable",
|
|
382
|
+
"ondeviceorientationabsolute": "writable",
|
|
383
|
+
"ondrag": "writable",
|
|
384
|
+
"ondragend": "writable",
|
|
385
|
+
"ondragenter": "writable",
|
|
386
|
+
"ondragleave": "writable",
|
|
387
|
+
"ondragover": "writable",
|
|
388
|
+
"ondragstart": "writable",
|
|
389
|
+
"ondrop": "writable",
|
|
390
|
+
"ondurationchange": "writable",
|
|
391
|
+
"onemptied": "writable",
|
|
392
|
+
"onended": "writable",
|
|
393
|
+
"onerror": "writable",
|
|
394
|
+
"onfocus": "writable",
|
|
395
|
+
"ongotpointercapture": "writable",
|
|
396
|
+
"onhashchange": "writable",
|
|
397
|
+
"oninput": "writable",
|
|
398
|
+
"oninvalid": "writable",
|
|
399
|
+
"onkeydown": "writable",
|
|
400
|
+
"onkeypress": "writable",
|
|
401
|
+
"onkeyup": "writable",
|
|
402
|
+
"onlanguagechange": "writable",
|
|
403
|
+
"onload": "writable",
|
|
404
|
+
"onloadeddata": "writable",
|
|
405
|
+
"onloadedmetadata": "writable",
|
|
406
|
+
"onloadstart": "writable",
|
|
407
|
+
"onlostpointercapture": "writable",
|
|
408
|
+
"onmessage": "writable",
|
|
409
|
+
"onmessageerror": "writable",
|
|
410
|
+
"onmousedown": "writable",
|
|
411
|
+
"onmouseenter": "writable",
|
|
412
|
+
"onmouseleave": "writable",
|
|
413
|
+
"onmousemove": "writable",
|
|
414
|
+
"onmouseout": "writable",
|
|
415
|
+
"onmouseover": "writable",
|
|
416
|
+
"onmouseup": "writable",
|
|
417
|
+
"onmousewheel": "writable",
|
|
418
|
+
"onoffline": "writable",
|
|
419
|
+
"ononline": "writable",
|
|
420
|
+
"onpagehide": "writable",
|
|
421
|
+
"onpageshow": "writable",
|
|
422
|
+
"onpause": "writable",
|
|
423
|
+
"onplay": "writable",
|
|
424
|
+
"onplaying": "writable",
|
|
425
|
+
"onpointercancel": "writable",
|
|
426
|
+
"onpointerdown": "writable",
|
|
427
|
+
"onpointerenter": "writable",
|
|
428
|
+
"onpointerleave": "writable",
|
|
429
|
+
"onpointermove": "writable",
|
|
430
|
+
"onpointerout": "writable",
|
|
431
|
+
"onpointerover": "writable",
|
|
432
|
+
"onpointerup": "writable",
|
|
433
|
+
"onpopstate": "writable",
|
|
434
|
+
"onprogress": "writable",
|
|
435
|
+
"onratechange": "writable",
|
|
436
|
+
"onrejectionhandled": "writable",
|
|
437
|
+
"onreset": "writable",
|
|
438
|
+
"onresize": "writable",
|
|
439
|
+
"onscroll": "writable",
|
|
440
|
+
"onsearch": "writable",
|
|
441
|
+
"onseeked": "writable",
|
|
442
|
+
"onseeking": "writable",
|
|
443
|
+
"onselect": "writable",
|
|
444
|
+
"onstalled": "writable",
|
|
445
|
+
"onstorage": "writable",
|
|
446
|
+
"onsubmit": "writable",
|
|
447
|
+
"onsuspend": "writable",
|
|
448
|
+
"ontimeupdate": "writable",
|
|
449
|
+
"ontoggle": "writable",
|
|
450
|
+
"ontransitionend": "writable",
|
|
451
|
+
"onunhandledrejection": "writable",
|
|
452
|
+
"onunload": "writable",
|
|
453
|
+
"onvolumechange": "writable",
|
|
454
|
+
"onwaiting": "writable",
|
|
455
|
+
"onwheel": "writable",
|
|
456
|
+
"open": "readonly",
|
|
457
|
+
"openDatabase": "readonly",
|
|
458
|
+
"opener": "readonly",
|
|
459
|
+
"Option": "readonly",
|
|
460
|
+
"origin": "readonly",
|
|
461
|
+
"OscillatorNode": "readonly",
|
|
462
|
+
"outerHeight": "readonly",
|
|
463
|
+
"outerWidth": "readonly",
|
|
464
|
+
"OverconstrainedError": "readonly",
|
|
465
|
+
"PageTransitionEvent": "readonly",
|
|
466
|
+
"pageXOffset": "readonly",
|
|
467
|
+
"pageYOffset": "readonly",
|
|
468
|
+
"PannerNode": "readonly",
|
|
469
|
+
"parent": "readonly",
|
|
470
|
+
"Path2D": "readonly",
|
|
471
|
+
"PaymentAddress": "readonly",
|
|
472
|
+
"PaymentRequest": "readonly",
|
|
473
|
+
"PaymentRequestUpdateEvent": "readonly",
|
|
474
|
+
"PaymentResponse": "readonly",
|
|
475
|
+
"performance": "readonly",
|
|
476
|
+
"Performance": "readonly",
|
|
477
|
+
"PerformanceEntry": "readonly",
|
|
478
|
+
"PerformanceLongTaskTiming": "readonly",
|
|
479
|
+
"PerformanceMark": "readonly",
|
|
480
|
+
"PerformanceMeasure": "readonly",
|
|
481
|
+
"PerformanceNavigation": "readonly",
|
|
482
|
+
"PerformanceNavigationTiming": "readonly",
|
|
483
|
+
"PerformanceObserver": "readonly",
|
|
484
|
+
"PerformanceObserverEntryList": "readonly",
|
|
485
|
+
"PerformancePaintTiming": "readonly",
|
|
486
|
+
"PerformanceResourceTiming": "readonly",
|
|
487
|
+
"PerformanceTiming": "readonly",
|
|
488
|
+
"PeriodicWave": "readonly",
|
|
489
|
+
"Permissions": "readonly",
|
|
490
|
+
"PermissionStatus": "readonly",
|
|
491
|
+
"personalbar": "readonly",
|
|
492
|
+
"PhotoCapabilities": "readonly",
|
|
493
|
+
"Plugin": "readonly",
|
|
494
|
+
"PluginArray": "readonly",
|
|
495
|
+
"PointerEvent": "readonly",
|
|
496
|
+
"PopStateEvent": "readonly",
|
|
497
|
+
"postMessage": "writable",
|
|
498
|
+
"Presentation": "readonly",
|
|
499
|
+
"PresentationAvailability": "readonly",
|
|
500
|
+
"PresentationConnection": "readonly",
|
|
501
|
+
"PresentationConnectionAvailableEvent": "readonly",
|
|
502
|
+
"PresentationConnectionCloseEvent": "readonly",
|
|
503
|
+
"PresentationConnectionList": "readonly",
|
|
504
|
+
"PresentationReceiver": "readonly",
|
|
505
|
+
"PresentationRequest": "readonly",
|
|
506
|
+
"print": "readonly",
|
|
507
|
+
"process": "readonly",
|
|
508
|
+
"ProcessingInstruction": "readonly",
|
|
509
|
+
"ProgressEvent": "readonly",
|
|
510
|
+
"PromiseRejectionEvent": "readonly",
|
|
511
|
+
"prompt": "readonly",
|
|
512
|
+
"propertyIsEnumerable": "readonly",
|
|
513
|
+
"PushManager": "readonly",
|
|
514
|
+
"PushSubscription": "readonly",
|
|
515
|
+
"PushSubscriptionOptions": "readonly",
|
|
516
|
+
"queueMicrotask": "readonly",
|
|
517
|
+
"RadioNodeList": "readonly",
|
|
518
|
+
"Range": "readonly",
|
|
519
|
+
"ReadableByteStreamController": "readonly",
|
|
520
|
+
"ReadableStream": "readonly",
|
|
521
|
+
"ReadableStreamBYOBReader": "readonly",
|
|
522
|
+
"ReadableStreamBYOBRequest": "readonly",
|
|
523
|
+
"ReadableStreamDefaultController": "readonly",
|
|
524
|
+
"ReadableStreamDefaultReader": "readonly",
|
|
525
|
+
"registerProcessor": "readonly",
|
|
526
|
+
"RemotePlayback": "readonly",
|
|
527
|
+
"removeEventListener": "readonly",
|
|
528
|
+
"reportError": "readonly",
|
|
529
|
+
"Request": "readonly",
|
|
530
|
+
"requestAnimationFrame": "readonly",
|
|
531
|
+
"requestIdleCallback": "readonly",
|
|
532
|
+
"resizeBy": "readonly",
|
|
533
|
+
"ResizeObserver": "readonly",
|
|
534
|
+
"ResizeObserverEntry": "readonly",
|
|
535
|
+
"resizeTo": "readonly",
|
|
536
|
+
"Response": "readonly",
|
|
537
|
+
"RTCCertificate": "readonly",
|
|
538
|
+
"RTCDataChannel": "readonly",
|
|
539
|
+
"RTCDataChannelEvent": "readonly",
|
|
540
|
+
"RTCDtlsTransport": "readonly",
|
|
541
|
+
"RTCIceCandidate": "readonly",
|
|
542
|
+
"RTCIceGatherer": "readonly",
|
|
543
|
+
"RTCIceTransport": "readonly",
|
|
544
|
+
"RTCPeerConnection": "readonly",
|
|
545
|
+
"RTCPeerConnectionIceEvent": "readonly",
|
|
546
|
+
"RTCRtpContributingSource": "readonly",
|
|
547
|
+
"RTCRtpReceiver": "readonly",
|
|
548
|
+
"RTCRtpSender": "readonly",
|
|
549
|
+
"RTCSctpTransport": "readonly",
|
|
550
|
+
"RTCSessionDescription": "readonly",
|
|
551
|
+
"RTCStatsReport": "readonly",
|
|
552
|
+
"RTCTrackEvent": "readonly",
|
|
553
|
+
"screen": "readonly",
|
|
554
|
+
"Screen": "readonly",
|
|
555
|
+
"screenLeft": "readonly",
|
|
556
|
+
"ScreenOrientation": "readonly",
|
|
557
|
+
"screenTop": "readonly",
|
|
558
|
+
"screenX": "readonly",
|
|
559
|
+
"screenY": "readonly",
|
|
560
|
+
"ScriptProcessorNode": "readonly",
|
|
561
|
+
"scroll": "readonly",
|
|
562
|
+
"scrollbars": "readonly",
|
|
563
|
+
"scrollBy": "readonly",
|
|
564
|
+
"scrollTo": "readonly",
|
|
565
|
+
"scrollX": "readonly",
|
|
566
|
+
"scrollY": "readonly",
|
|
567
|
+
"SecurityPolicyViolationEvent": "readonly",
|
|
568
|
+
"Selection": "readonly",
|
|
569
|
+
"self": "writable",
|
|
570
|
+
"ServiceWorker": "readonly",
|
|
571
|
+
"ServiceWorkerContainer": "readonly",
|
|
572
|
+
"ServiceWorkerRegistration": "readonly",
|
|
573
|
+
"sessionStorage": "readonly",
|
|
574
|
+
"setImmediate": "readonly",
|
|
575
|
+
"setInterval": "readonly",
|
|
576
|
+
"setTimeout": "readonly",
|
|
577
|
+
"ShadowRoot": "readonly",
|
|
578
|
+
"SharedWorker": "readonly",
|
|
579
|
+
"SourceBuffer": "readonly",
|
|
580
|
+
"SourceBufferList": "readonly",
|
|
581
|
+
"speechSynthesis": "readonly",
|
|
582
|
+
"SpeechSynthesisEvent": "readonly",
|
|
583
|
+
"SpeechSynthesisUtterance": "readonly",
|
|
584
|
+
"StaticRange": "readonly",
|
|
585
|
+
"status": "readonly",
|
|
586
|
+
"statusbar": "readonly",
|
|
587
|
+
"StereoPannerNode": "readonly",
|
|
588
|
+
"stop": "readonly",
|
|
589
|
+
"Storage": "readonly",
|
|
590
|
+
"StorageEvent": "readonly",
|
|
591
|
+
"StorageManager": "readonly",
|
|
592
|
+
"structuredClone": "readonly",
|
|
593
|
+
"styleMedia": "readonly",
|
|
594
|
+
"StyleSheet": "readonly",
|
|
595
|
+
"StyleSheetList": "readonly",
|
|
596
|
+
"SubmitEvent": "readonly",
|
|
597
|
+
"SubtleCrypto": "readonly",
|
|
598
|
+
"SVGAElement": "readonly",
|
|
599
|
+
"SVGAngle": "readonly",
|
|
600
|
+
"SVGAnimatedAngle": "readonly",
|
|
601
|
+
"SVGAnimatedBoolean": "readonly",
|
|
602
|
+
"SVGAnimatedEnumeration": "readonly",
|
|
603
|
+
"SVGAnimatedInteger": "readonly",
|
|
604
|
+
"SVGAnimatedLength": "readonly",
|
|
605
|
+
"SVGAnimatedLengthList": "readonly",
|
|
606
|
+
"SVGAnimatedNumber": "readonly",
|
|
607
|
+
"SVGAnimatedNumberList": "readonly",
|
|
608
|
+
"SVGAnimatedPreserveAspectRatio": "readonly",
|
|
609
|
+
"SVGAnimatedRect": "readonly",
|
|
610
|
+
"SVGAnimatedString": "readonly",
|
|
611
|
+
"SVGAnimatedTransformList": "readonly",
|
|
612
|
+
"SVGAnimateElement": "readonly",
|
|
613
|
+
"SVGAnimateMotionElement": "readonly",
|
|
614
|
+
"SVGAnimateTransformElement": "readonly",
|
|
615
|
+
"SVGAnimationElement": "readonly",
|
|
616
|
+
"SVGCircleElement": "readonly",
|
|
617
|
+
"SVGClipPathElement": "readonly",
|
|
618
|
+
"SVGComponentTransferFunctionElement": "readonly",
|
|
619
|
+
"SVGDefsElement": "readonly",
|
|
620
|
+
"SVGDescElement": "readonly",
|
|
621
|
+
"SVGDiscardElement": "readonly",
|
|
622
|
+
"SVGElement": "readonly",
|
|
623
|
+
"SVGEllipseElement": "readonly",
|
|
624
|
+
"SVGFEBlendElement": "readonly",
|
|
625
|
+
"SVGFEColorMatrixElement": "readonly",
|
|
626
|
+
"SVGFEComponentTransferElement": "readonly",
|
|
627
|
+
"SVGFECompositeElement": "readonly",
|
|
628
|
+
"SVGFEConvolveMatrixElement": "readonly",
|
|
629
|
+
"SVGFEDiffuseLightingElement": "readonly",
|
|
630
|
+
"SVGFEDisplacementMapElement": "readonly",
|
|
631
|
+
"SVGFEDistantLightElement": "readonly",
|
|
632
|
+
"SVGFEDropShadowElement": "readonly",
|
|
633
|
+
"SVGFEFloodElement": "readonly",
|
|
634
|
+
"SVGFEFuncAElement": "readonly",
|
|
635
|
+
"SVGFEFuncBElement": "readonly",
|
|
636
|
+
"SVGFEFuncGElement": "readonly",
|
|
637
|
+
"SVGFEFuncRElement": "readonly",
|
|
638
|
+
"SVGFEGaussianBlurElement": "readonly",
|
|
639
|
+
"SVGFEImageElement": "readonly",
|
|
640
|
+
"SVGFEMergeElement": "readonly",
|
|
641
|
+
"SVGFEMergeNodeElement": "readonly",
|
|
642
|
+
"SVGFEMorphologyElement": "readonly",
|
|
643
|
+
"SVGFEOffsetElement": "readonly",
|
|
644
|
+
"SVGFEPointLightElement": "readonly",
|
|
645
|
+
"SVGFESpecularLightingElement": "readonly",
|
|
646
|
+
"SVGFESpotLightElement": "readonly",
|
|
647
|
+
"SVGFETileElement": "readonly",
|
|
648
|
+
"SVGFETurbulenceElement": "readonly",
|
|
649
|
+
"SVGFilterElement": "readonly",
|
|
650
|
+
"SVGForeignObjectElement": "readonly",
|
|
651
|
+
"SVGGElement": "readonly",
|
|
652
|
+
"SVGGeometryElement": "readonly",
|
|
653
|
+
"SVGGradientElement": "readonly",
|
|
654
|
+
"SVGGraphicsElement": "readonly",
|
|
655
|
+
"SVGImageElement": "readonly",
|
|
656
|
+
"SVGLength": "readonly",
|
|
657
|
+
"SVGLengthList": "readonly",
|
|
658
|
+
"SVGLinearGradientElement": "readonly",
|
|
659
|
+
"SVGLineElement": "readonly",
|
|
660
|
+
"SVGMarkerElement": "readonly",
|
|
661
|
+
"SVGMaskElement": "readonly",
|
|
662
|
+
"SVGMatrix": "readonly",
|
|
663
|
+
"SVGMetadataElement": "readonly",
|
|
664
|
+
"SVGMPathElement": "readonly",
|
|
665
|
+
"SVGNumber": "readonly",
|
|
666
|
+
"SVGNumberList": "readonly",
|
|
667
|
+
"SVGPathElement": "readonly",
|
|
668
|
+
"SVGPatternElement": "readonly",
|
|
669
|
+
"SVGPoint": "readonly",
|
|
670
|
+
"SVGPointList": "readonly",
|
|
671
|
+
"SVGPolygonElement": "readonly",
|
|
672
|
+
"SVGPolylineElement": "readonly",
|
|
673
|
+
"SVGPreserveAspectRatio": "readonly",
|
|
674
|
+
"SVGRadialGradientElement": "readonly",
|
|
675
|
+
"SVGRect": "readonly",
|
|
676
|
+
"SVGRectElement": "readonly",
|
|
677
|
+
"SVGScriptElement": "readonly",
|
|
678
|
+
"SVGSetElement": "readonly",
|
|
679
|
+
"SVGStopElement": "readonly",
|
|
680
|
+
"SVGStringList": "readonly",
|
|
681
|
+
"SVGStyleElement": "readonly",
|
|
682
|
+
"SVGSVGElement": "readonly",
|
|
683
|
+
"SVGSwitchElement": "readonly",
|
|
684
|
+
"SVGSymbolElement": "readonly",
|
|
685
|
+
"SVGTextContentElement": "readonly",
|
|
686
|
+
"SVGTextElement": "readonly",
|
|
687
|
+
"SVGTextPathElement": "readonly",
|
|
688
|
+
"SVGTextPositioningElement": "readonly",
|
|
689
|
+
"SVGTitleElement": "readonly",
|
|
690
|
+
"SVGTransform": "readonly",
|
|
691
|
+
"SVGTransformList": "readonly",
|
|
692
|
+
"SVGTSpanElement": "readonly",
|
|
693
|
+
"SVGUnitTypes": "readonly",
|
|
694
|
+
"SVGUseElement": "readonly",
|
|
695
|
+
"SVGViewElement": "readonly",
|
|
696
|
+
"TaskAttributionTiming": "readonly",
|
|
697
|
+
"Text": "readonly",
|
|
698
|
+
"TextDecoder": "readonly",
|
|
699
|
+
"TextDecoderStream": "readonly",
|
|
700
|
+
"TextEncoder": "readonly",
|
|
701
|
+
"TextEncoderStream": "readonly",
|
|
702
|
+
"TextEvent": "readonly",
|
|
703
|
+
"TextMetrics": "readonly",
|
|
704
|
+
"TextTrack": "readonly",
|
|
705
|
+
"TextTrackCue": "readonly",
|
|
706
|
+
"TextTrackCueList": "readonly",
|
|
707
|
+
"TextTrackList": "readonly",
|
|
708
|
+
"TimeRanges": "readonly",
|
|
709
|
+
"ToggleEvent": "readonly",
|
|
710
|
+
"toLocaleString": "readonly",
|
|
711
|
+
"toolbar": "readonly",
|
|
712
|
+
"top": "readonly",
|
|
713
|
+
"toString": "readonly",
|
|
714
|
+
"Touch": "readonly",
|
|
715
|
+
"TouchEvent": "readonly",
|
|
716
|
+
"TouchList": "readonly",
|
|
717
|
+
"TrackEvent": "readonly",
|
|
718
|
+
"TransformStream": "readonly",
|
|
719
|
+
"TransformStreamDefaultController": "readonly",
|
|
720
|
+
"TransitionEvent": "readonly",
|
|
721
|
+
"TreeWalker": "readonly",
|
|
722
|
+
"UIEvent": "readonly",
|
|
723
|
+
"URL": "readonly",
|
|
724
|
+
"URLSearchParams": "readonly",
|
|
725
|
+
"ValidityState": "readonly",
|
|
726
|
+
"valueOf": "readonly",
|
|
727
|
+
"visualViewport": "readonly",
|
|
728
|
+
"VisualViewport": "readonly",
|
|
729
|
+
"VTTCue": "readonly",
|
|
730
|
+
"WaveShaperNode": "readonly",
|
|
731
|
+
"WebAssembly": "readonly",
|
|
732
|
+
"WebGL2RenderingContext": "readonly",
|
|
733
|
+
"WebGLActiveInfo": "readonly",
|
|
734
|
+
"WebGLBuffer": "readonly",
|
|
735
|
+
"WebGLContextEvent": "readonly",
|
|
736
|
+
"WebGLFramebuffer": "readonly",
|
|
737
|
+
"WebGLProgram": "readonly",
|
|
738
|
+
"WebGLQuery": "readonly",
|
|
739
|
+
"WebGLRenderbuffer": "readonly",
|
|
740
|
+
"WebGLRenderingContext": "readonly",
|
|
741
|
+
"WebGLSampler": "readonly",
|
|
742
|
+
"WebGLShader": "readonly",
|
|
743
|
+
"WebGLShaderPrecisionFormat": "readonly",
|
|
744
|
+
"WebGLSync": "readonly",
|
|
745
|
+
"WebGLTexture": "readonly",
|
|
746
|
+
"WebGLTransformFeedback": "readonly",
|
|
747
|
+
"WebGLUniformLocation": "readonly",
|
|
748
|
+
"WebGLVertexArrayObject": "readonly",
|
|
749
|
+
"WebSocket": "readonly",
|
|
750
|
+
"WheelEvent": "readonly",
|
|
751
|
+
"window": "readonly",
|
|
752
|
+
"Window": "readonly",
|
|
753
|
+
"Worker": "readonly",
|
|
754
|
+
"WorkerGlobalScope": "readonly",
|
|
755
|
+
"WritableStream": "readonly",
|
|
756
|
+
"WritableStreamDefaultController": "readonly",
|
|
757
|
+
"WritableStreamDefaultWriter": "readonly",
|
|
758
|
+
"XMLDocument": "readonly",
|
|
759
|
+
"XMLHttpRequest": "readonly",
|
|
760
|
+
"XMLHttpRequestEventTarget": "readonly",
|
|
761
|
+
"XMLHttpRequestUpload": "readonly",
|
|
762
|
+
"XMLSerializer": "readonly",
|
|
763
|
+
"XPathEvaluator": "readonly",
|
|
764
|
+
"XPathExpression": "readonly",
|
|
765
|
+
"XPathResult": "readonly",
|
|
766
|
+
"XRAnchor": "readonly",
|
|
767
|
+
"XRBoundedReferenceSpace": "readonly",
|
|
768
|
+
"XRCPUDepthInformation": "readonly",
|
|
769
|
+
"XRDepthInformation": "readonly",
|
|
770
|
+
"XRFrame": "readonly",
|
|
771
|
+
"XRInputSource": "readonly",
|
|
772
|
+
"XRInputSourceArray": "readonly",
|
|
773
|
+
"XRInputSourceEvent": "readonly",
|
|
774
|
+
"XRInputSourcesChangeEvent": "readonly",
|
|
775
|
+
"XRPose": "readonly",
|
|
776
|
+
"XRReferenceSpace": "readonly",
|
|
777
|
+
"XRReferenceSpaceEvent": "readonly",
|
|
778
|
+
"XRRenderState": "readonly",
|
|
779
|
+
"XRRigidTransform": "readonly",
|
|
780
|
+
"XRSession": "readonly",
|
|
781
|
+
"XRSessionEvent": "readonly",
|
|
782
|
+
"XRSpace": "readonly",
|
|
783
|
+
"XRSystem": "readonly",
|
|
784
|
+
"XRView": "readonly",
|
|
785
|
+
"XRViewerPose": "readonly",
|
|
786
|
+
"XRViewport": "readonly",
|
|
787
|
+
"XRWebGLBinding": "readonly",
|
|
788
|
+
"XRWebGLDepthInformation": "readonly",
|
|
789
|
+
"XRWebGLLayer": "readonly",
|
|
790
|
+
"XSLTProcessor": "readonly"
|
|
791
|
+
}
|
|
792
|
+
}]
|
|
793
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../node_modules/oxlint/configuration_schema.json",
|
|
3
|
+
"ignorePatterns": [
|
|
4
|
+
"**/.git/**",
|
|
5
|
+
"**/node_modules/**",
|
|
6
|
+
"**/dist/**",
|
|
7
|
+
"**/lib/**",
|
|
8
|
+
"**/build/**",
|
|
9
|
+
"**/public/**",
|
|
10
|
+
"**/.vercel/**",
|
|
11
|
+
"**/__snapshots__/**",
|
|
12
|
+
"**/*.snap",
|
|
13
|
+
"**/package-lock.json",
|
|
14
|
+
"**/yarn.lock",
|
|
15
|
+
"**/pnpm-lock.yaml",
|
|
16
|
+
"**/bun.lockb",
|
|
17
|
+
"**/*.css"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../node_modules/oxlint/configuration_schema.json",
|
|
3
|
+
"categories": {
|
|
4
|
+
"correctness": "warn",
|
|
5
|
+
"perf": "warn",
|
|
6
|
+
"style": "warn",
|
|
7
|
+
"suspicious": "warn"
|
|
8
|
+
},
|
|
9
|
+
"plugins": ["unicorn"],
|
|
10
|
+
"overrides": [{
|
|
11
|
+
"files": ["**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts}"],
|
|
12
|
+
"rules": {
|
|
13
|
+
"arrow-body-style": "off",
|
|
14
|
+
"curly": ["warn", "all"],
|
|
15
|
+
"eqeqeq": ["warn","always"],
|
|
16
|
+
"func-style": ["warn", "declaration", { "allowArrowFunctions": true }],
|
|
17
|
+
"no-constant-binary-expression": "warn",
|
|
18
|
+
"no-dupe-class-members": "error",
|
|
19
|
+
"no-empty": ["warn", { "allowEmptyCatch": true }],
|
|
20
|
+
"no-empty-static-block": "warn",
|
|
21
|
+
"no-extra-bind": "warn",
|
|
22
|
+
"no-loss-of-precision": "warn",
|
|
23
|
+
"no-new-native-nonconstructor": "error",
|
|
24
|
+
"no-unexpected-multiline": "warn",
|
|
25
|
+
"no-unneeded-ternary": "warn",
|
|
26
|
+
"no-unused-expressions": ["warn", {
|
|
27
|
+
"allowShortCircuit": true,
|
|
28
|
+
"allowTaggedTemplates": true,
|
|
29
|
+
"allowTernary": true
|
|
30
|
+
}],
|
|
31
|
+
"no-unused-labels": "warn",
|
|
32
|
+
"no-unused-vars": "off",
|
|
33
|
+
"no-useless-call": "warn",
|
|
34
|
+
"no-useless-catch": "warn",
|
|
35
|
+
"no-useless-computed-key": "warn",
|
|
36
|
+
"no-useless-concat": "warn",
|
|
37
|
+
"no-useless-constructor": "off",
|
|
38
|
+
"no-useless-escape": "warn",
|
|
39
|
+
"no-useless-rename": "warn",
|
|
40
|
+
"no-useless-return": "warn",
|
|
41
|
+
"no-var": "warn",
|
|
42
|
+
"prefer-exponentiation-operator": "warn",
|
|
43
|
+
"prefer-object-spread": "warn",
|
|
44
|
+
"prefer-template": "warn",
|
|
45
|
+
"radix": "warn",
|
|
46
|
+
|
|
47
|
+
// disable recommended rules
|
|
48
|
+
"id-length": "off",
|
|
49
|
+
"sort-imports": "off",
|
|
50
|
+
"no-magic-numbers": "off",
|
|
51
|
+
|
|
52
|
+
// unicorn
|
|
53
|
+
"unicorn/better-regex": "warn",
|
|
54
|
+
"unicorn/consistent-destructuring": "warn",
|
|
55
|
+
"unicorn/empty-brace-spaces": "warn",
|
|
56
|
+
"unicorn/error-message": "warn",
|
|
57
|
+
"unicorn/no-await-expression-member": "warn",
|
|
58
|
+
"unicorn/no-empty-file": "warn",
|
|
59
|
+
"unicorn/no-instanceof-array": "warn",
|
|
60
|
+
"unicorn/no-negation-in-equality-check": "warn",
|
|
61
|
+
"unicorn/no-unreadable-array-destructuring": "warn",
|
|
62
|
+
"unicorn/no-useless-length-check": "warn",
|
|
63
|
+
"unicorn/no-useless-spread": "warn",
|
|
64
|
+
"unicorn/no-useless-undefined": ["warn", { "checkArguments": false }],
|
|
65
|
+
"unicorn/number-literal-case": "warn",
|
|
66
|
+
"unicorn/numeric-separators-style": ["warn", { "onlyIfContainsSeparator": false }],
|
|
67
|
+
"unicorn/prefer-date-now": "warn",
|
|
68
|
+
"unicorn/prefer-export-from": ["warn", { "ignoreUsedVariables": true }],
|
|
69
|
+
"unicorn/prefer-negative-index": "warn",
|
|
70
|
+
"unicorn/prefer-node-protocol": "warn",
|
|
71
|
+
"unicorn/template-indent": ["warn", { "tags": ["ts"] }],
|
|
72
|
+
"unicorn/throw-new-error": "warn",
|
|
73
|
+
"yoda": "warn",
|
|
74
|
+
}
|
|
75
|
+
}]
|
|
76
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../node_modules/oxlint/configuration_schema.json",
|
|
3
|
+
"extends": ["./javascript.json"],
|
|
4
|
+
"overrides": [{
|
|
5
|
+
"files": ["**/*.{ts,tsx,cjs,mjs}"],
|
|
6
|
+
"rules": {
|
|
7
|
+
"typescript/await-thenable": "warn",
|
|
8
|
+
"typescript/no-array-delete": "warn",
|
|
9
|
+
"typescript/no-base-to-string": "warn",
|
|
10
|
+
"typescript/no-confusing-void-expression": "warn",
|
|
11
|
+
"typescript/no-duplicate-type-constituents": "warn",
|
|
12
|
+
"typescript/no-floating-promises": "warn",
|
|
13
|
+
"typescript/no-for-in-array": "warn",
|
|
14
|
+
"typescript/no-implied-eval": "warn",
|
|
15
|
+
"typescript/no-meaningless-void-operator": "warn",
|
|
16
|
+
"typescript/no-misused-promises": "warn",
|
|
17
|
+
"typescript/no-misused-spread": "warn",
|
|
18
|
+
"typescript/no-mixed-enums": "warn",
|
|
19
|
+
"typescript/no-redundant-type-constituents": "warn",
|
|
20
|
+
"typescript/no-unnecessary-boolean-literal-compare": "warn",
|
|
21
|
+
"typescript/no-unnecessary-template-expression": "warn",
|
|
22
|
+
"typescript/no-unnecessary-type-arguments": "warn",
|
|
23
|
+
"typescript/no-unnecessary-type-assertion": "warn",
|
|
24
|
+
"typescript/no-unsafe-argument": "warn",
|
|
25
|
+
"typescript/no-unsafe-assignment": "warn",
|
|
26
|
+
"typescript/no-unsafe-call": "warn",
|
|
27
|
+
"typescript/no-unsafe-enum-comparison": "warn",
|
|
28
|
+
"typescript/no-unsafe-member-access": "warn",
|
|
29
|
+
"typescript/no-unsafe-return": "warn",
|
|
30
|
+
"typescript/no-unsafe-type-assertion": "warn",
|
|
31
|
+
"typescript/no-unsafe-unary-minus": "warn",
|
|
32
|
+
"typescript/non-nullable-type-assertion-style": "warn",
|
|
33
|
+
"typescript/only-throw-warn": "warn",
|
|
34
|
+
"typescript/prefer-promise-reject-warns": "warn",
|
|
35
|
+
"typescript/prefer-reduce-type-parameter": "warn",
|
|
36
|
+
"typescript/prefer-return-this-type": "warn",
|
|
37
|
+
"typescript/promise-function-async": "warn",
|
|
38
|
+
"typescript/related-getter-setter-pairs": "warn",
|
|
39
|
+
"typescript/require-array-sort-compare": "warn",
|
|
40
|
+
"typescript/require-await": "warn",
|
|
41
|
+
"typescript/restrict-plus-operands": "warn",
|
|
42
|
+
"typescript/restrict-template-expressions": "warn",
|
|
43
|
+
"typescript/return-await": "warn",
|
|
44
|
+
"typescript/switch-exhaustiveness-check": "warn",
|
|
45
|
+
"typescript/unbound-method": "warn",
|
|
46
|
+
"typescript/use-unknown-in-catch-callback-variable": "warn"
|
|
47
|
+
}
|
|
48
|
+
}],
|
|
49
|
+
"plugins": ["typescript"]
|
|
50
|
+
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.5.
|
|
2
|
+
"version": "1.5.21",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"name": "@schoero/configs",
|
|
5
5
|
"description": "",
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
"./eslint": "./eslint/index.js",
|
|
12
12
|
"./eslint/*": "./eslint/*.js",
|
|
13
13
|
"./markdownlint": "./markdownlint/markdownlint.jsonc",
|
|
14
|
+
"./oxlint": "./oxlint/index.json",
|
|
15
|
+
"./oxlint/*": "./oxlint/*.json",
|
|
14
16
|
"./tsconfig": "./tsconfig/tsconfig.json",
|
|
15
17
|
"./vite": "./vite/vite.config.js"
|
|
16
18
|
},
|
|
@@ -31,6 +33,7 @@
|
|
|
31
33
|
},
|
|
32
34
|
"files": [
|
|
33
35
|
"eslint",
|
|
36
|
+
"oxlint",
|
|
34
37
|
"tsconfig",
|
|
35
38
|
"vite",
|
|
36
39
|
"markdownlint",
|
|
@@ -45,6 +48,8 @@
|
|
|
45
48
|
"cspell": "^9.4.0",
|
|
46
49
|
"eslint": "^9.39.1",
|
|
47
50
|
"markdownlint": "^0.40.0",
|
|
51
|
+
"oxlint": "^1.35.0",
|
|
52
|
+
"oxlint-tsgolint": "^0.10.0",
|
|
48
53
|
"unwritten": "^0.2.14",
|
|
49
54
|
"vite": "^7.2.6",
|
|
50
55
|
"vitest": "^4.0.15"
|
|
@@ -65,6 +70,12 @@
|
|
|
65
70
|
"markdownlint": {
|
|
66
71
|
"optional": true
|
|
67
72
|
},
|
|
73
|
+
"oxlint": {
|
|
74
|
+
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"oxlint-tsgolint": {
|
|
77
|
+
"optional": true
|
|
78
|
+
},
|
|
68
79
|
"unwritten": {
|
|
69
80
|
"optional": true
|
|
70
81
|
},
|
|
@@ -77,51 +88,53 @@
|
|
|
77
88
|
},
|
|
78
89
|
"dependencies": {
|
|
79
90
|
"@cspell/dict-bash": "^4.2.2",
|
|
80
|
-
"@cspell/dict-companies": "^3.2.
|
|
81
|
-
"@cspell/dict-css": "^4.0.
|
|
91
|
+
"@cspell/dict-companies": "^3.2.9",
|
|
92
|
+
"@cspell/dict-css": "^4.0.19",
|
|
82
93
|
"@cspell/dict-de-ch": "^1.3.2",
|
|
83
|
-
"@cspell/dict-en_us": "^4.4.
|
|
94
|
+
"@cspell/dict-en_us": "^4.4.26",
|
|
84
95
|
"@cspell/dict-fr-fr": "^2.3.2",
|
|
85
96
|
"@cspell/dict-fullstack": "^3.2.7",
|
|
86
|
-
"@cspell/dict-html": "^4.0.
|
|
87
|
-
"@cspell/dict-html-symbol-entities": "^4.0.
|
|
97
|
+
"@cspell/dict-html": "^4.0.14",
|
|
98
|
+
"@cspell/dict-html-symbol-entities": "^4.0.5",
|
|
88
99
|
"@cspell/dict-it-it": "^3.1.6",
|
|
89
100
|
"@cspell/dict-lorem-ipsum": "^4.0.5",
|
|
90
|
-
"@cspell/dict-markdown": "^2.0.
|
|
101
|
+
"@cspell/dict-markdown": "^2.0.14",
|
|
91
102
|
"@cspell/dict-node": "^5.0.8",
|
|
92
|
-
"@cspell/dict-npm": "^5.2.
|
|
103
|
+
"@cspell/dict-npm": "^5.2.27",
|
|
93
104
|
"@cspell/dict-public-licenses": "^2.0.15",
|
|
94
|
-
"@cspell/dict-software-terms": "^5.1.
|
|
105
|
+
"@cspell/dict-software-terms": "^5.1.18",
|
|
95
106
|
"@cspell/dict-typescript": "^3.2.3",
|
|
96
107
|
"@stylistic/eslint-plugin": "^5.6.1",
|
|
97
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
98
|
-
"@typescript-eslint/parser": "^8.
|
|
108
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
109
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
99
110
|
"cspell-lib": "^9.4.0",
|
|
100
111
|
"eslint-plugin-import-newlines": "^1.4.0",
|
|
101
112
|
"eslint-plugin-import-x": "^4.16.1",
|
|
102
|
-
"eslint-plugin-jsdoc": "^61.
|
|
113
|
+
"eslint-plugin-jsdoc": "^61.5.0",
|
|
103
114
|
"eslint-plugin-jsonc": "^2.21.0",
|
|
104
115
|
"eslint-plugin-markdown": "^5.1.0",
|
|
105
|
-
"eslint-plugin-perfectionist": "^
|
|
116
|
+
"eslint-plugin-perfectionist": "^5.1.0",
|
|
106
117
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
107
118
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
108
119
|
"eslint-plugin-vitest": "^0.5.4",
|
|
109
|
-
"eslint-plugin-yml": "^1.19.
|
|
120
|
+
"eslint-plugin-yml": "^1.19.1",
|
|
110
121
|
"markdownlint-cli2": "^0.20.0",
|
|
111
|
-
"vite-tsconfig-paths": "^
|
|
122
|
+
"vite-tsconfig-paths": "^6.0.3",
|
|
112
123
|
"yaml-eslint-parser": "^1.3.2"
|
|
113
124
|
},
|
|
114
125
|
"optionalDependencies": {
|
|
115
|
-
"eslint-plugin-better-tailwindcss": "beta"
|
|
126
|
+
"eslint-plugin-better-tailwindcss": "4.0.0-beta.6"
|
|
116
127
|
},
|
|
117
128
|
"devDependencies": {
|
|
118
|
-
"@types/node": "^
|
|
129
|
+
"@types/node": "^25.0.3",
|
|
119
130
|
"changelogen": "^0.6.2",
|
|
120
131
|
"cspell": "^9.4.0",
|
|
121
|
-
"eslint": "^9.39.
|
|
132
|
+
"eslint": "^9.39.2",
|
|
122
133
|
"markdownlint": "^0.40.0",
|
|
123
|
-
"
|
|
124
|
-
"
|
|
134
|
+
"oxlint": "^1.35.0",
|
|
135
|
+
"oxlint-tsgolint": "^0.10.0",
|
|
136
|
+
"vite": "^7.3.0",
|
|
137
|
+
"vitest": "^4.0.16"
|
|
125
138
|
},
|
|
126
139
|
"keywords": []
|
|
127
140
|
}
|