linted 33.6.1 → 33.7.1
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/dist/imports/index.d.ts
CHANGED
|
@@ -5,10 +5,10 @@ declare const _default: {
|
|
|
5
5
|
yml: typeof import("yaml-eslint-parser");
|
|
6
6
|
};
|
|
7
7
|
plugins: {
|
|
8
|
-
stylistic:
|
|
8
|
+
stylistic: {
|
|
9
9
|
rules: import("@stylistic/eslint-plugin").Rules;
|
|
10
10
|
configs: import("eslint").ESLint.Plugin["configs"] & import("@stylistic/eslint-plugin").Configs;
|
|
11
|
-
}
|
|
11
|
+
};
|
|
12
12
|
ts: NoInfer<typeof import("typescript-eslint").plugin>;
|
|
13
13
|
mocha: {
|
|
14
14
|
rules: {
|
|
@@ -104,10 +104,10 @@ declare const _default: {
|
|
|
104
104
|
};
|
|
105
105
|
chai: typeof import("eslint-plugin-chai-friendly");
|
|
106
106
|
"chai-expect": typeof import("eslint-plugin-chai-expect");
|
|
107
|
-
html:
|
|
107
|
+
html: object;
|
|
108
108
|
css: typeof import("@eslint/css").default;
|
|
109
109
|
json: typeof import("@eslint/json").default;
|
|
110
|
-
jsonc:
|
|
110
|
+
jsonc: {
|
|
111
111
|
meta: typeof import("eslint-plugin-jsonc/meta");
|
|
112
112
|
configs: {
|
|
113
113
|
base: {
|
|
@@ -468,7 +468,7 @@ declare const _default: {
|
|
|
468
468
|
parseJSON: typeof import("jsonc-eslint-parser").parseJSON;
|
|
469
469
|
traverseNodes: typeof import("jsonc-eslint-parser").traverseNodes;
|
|
470
470
|
getStaticJSONValue: typeof import("jsonc-eslint-parser").getStaticJSONValue;
|
|
471
|
-
}
|
|
471
|
+
};
|
|
472
472
|
yml: {
|
|
473
473
|
meta: typeof import("eslint-plugin-yml/lib/meta");
|
|
474
474
|
configs: {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import stylistic from "@stylistic/eslint-plugin";
|
|
2
1
|
import { plugin as ts } from "typescript-eslint";
|
|
3
2
|
import chai from "eslint-plugin-chai-friendly";
|
|
4
3
|
import chaiExpect from "eslint-plugin-chai-expect";
|
|
5
|
-
import html from "@html-eslint/eslint-plugin";
|
|
6
4
|
import css from "@eslint/css";
|
|
7
5
|
import json from "@eslint/json";
|
|
8
|
-
import jsonc from "eslint-plugin-jsonc";
|
|
9
6
|
declare const _default: {
|
|
10
|
-
stylistic:
|
|
7
|
+
stylistic: {
|
|
8
|
+
rules: import("@stylistic/eslint-plugin").Rules;
|
|
9
|
+
configs: import("eslint").ESLint.Plugin["configs"] & import("@stylistic/eslint-plugin").Configs;
|
|
10
|
+
};
|
|
11
11
|
ts: NoInfer<typeof ts>;
|
|
12
12
|
mocha: {
|
|
13
13
|
rules: {
|
|
@@ -103,10 +103,371 @@ declare const _default: {
|
|
|
103
103
|
};
|
|
104
104
|
chai: typeof chai;
|
|
105
105
|
"chai-expect": typeof chaiExpect;
|
|
106
|
-
html:
|
|
106
|
+
html: object;
|
|
107
107
|
css: typeof css;
|
|
108
108
|
json: typeof json;
|
|
109
|
-
jsonc:
|
|
109
|
+
jsonc: {
|
|
110
|
+
meta: typeof import("eslint-plugin-jsonc/meta");
|
|
111
|
+
configs: {
|
|
112
|
+
base: {
|
|
113
|
+
plugins: string[];
|
|
114
|
+
overrides: {
|
|
115
|
+
files: string[];
|
|
116
|
+
parser: string;
|
|
117
|
+
rules: {
|
|
118
|
+
strict: string;
|
|
119
|
+
"no-unused-expressions": string;
|
|
120
|
+
"no-unused-vars": string;
|
|
121
|
+
};
|
|
122
|
+
}[];
|
|
123
|
+
};
|
|
124
|
+
"auto-config": {
|
|
125
|
+
extends: string[];
|
|
126
|
+
rules: {
|
|
127
|
+
"jsonc/auto": string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
"recommended-with-json": {
|
|
131
|
+
extends: string[];
|
|
132
|
+
rules: {
|
|
133
|
+
"jsonc/comma-dangle": string;
|
|
134
|
+
"jsonc/no-bigint-literals": string;
|
|
135
|
+
"jsonc/no-binary-expression": string;
|
|
136
|
+
"jsonc/no-binary-numeric-literals": string;
|
|
137
|
+
"jsonc/no-comments": string;
|
|
138
|
+
"jsonc/no-dupe-keys": string;
|
|
139
|
+
"jsonc/no-escape-sequence-in-identifier": string;
|
|
140
|
+
"jsonc/no-floating-decimal": string;
|
|
141
|
+
"jsonc/no-hexadecimal-numeric-literals": string;
|
|
142
|
+
"jsonc/no-infinity": string;
|
|
143
|
+
"jsonc/no-multi-str": string;
|
|
144
|
+
"jsonc/no-nan": string;
|
|
145
|
+
"jsonc/no-number-props": string;
|
|
146
|
+
"jsonc/no-numeric-separators": string;
|
|
147
|
+
"jsonc/no-octal-numeric-literals": string;
|
|
148
|
+
"jsonc/no-octal": string;
|
|
149
|
+
"jsonc/no-parenthesized": string;
|
|
150
|
+
"jsonc/no-plus-sign": string;
|
|
151
|
+
"jsonc/no-regexp-literals": string;
|
|
152
|
+
"jsonc/no-sparse-arrays": string;
|
|
153
|
+
"jsonc/no-template-literals": string;
|
|
154
|
+
"jsonc/no-undefined-value": string;
|
|
155
|
+
"jsonc/no-unicode-codepoint-escapes": string;
|
|
156
|
+
"jsonc/no-useless-escape": string;
|
|
157
|
+
"jsonc/quote-props": string;
|
|
158
|
+
"jsonc/quotes": string;
|
|
159
|
+
"jsonc/space-unary-ops": string;
|
|
160
|
+
"jsonc/valid-json-number": string;
|
|
161
|
+
"jsonc/vue-custom-block/no-parsing-error": string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
"recommended-with-jsonc": {
|
|
165
|
+
extends: string[];
|
|
166
|
+
rules: {
|
|
167
|
+
"jsonc/no-bigint-literals": string;
|
|
168
|
+
"jsonc/no-binary-expression": string;
|
|
169
|
+
"jsonc/no-binary-numeric-literals": string;
|
|
170
|
+
"jsonc/no-dupe-keys": string;
|
|
171
|
+
"jsonc/no-escape-sequence-in-identifier": string;
|
|
172
|
+
"jsonc/no-floating-decimal": string;
|
|
173
|
+
"jsonc/no-hexadecimal-numeric-literals": string;
|
|
174
|
+
"jsonc/no-infinity": string;
|
|
175
|
+
"jsonc/no-multi-str": string;
|
|
176
|
+
"jsonc/no-nan": string;
|
|
177
|
+
"jsonc/no-number-props": string;
|
|
178
|
+
"jsonc/no-numeric-separators": string;
|
|
179
|
+
"jsonc/no-octal-numeric-literals": string;
|
|
180
|
+
"jsonc/no-octal": string;
|
|
181
|
+
"jsonc/no-parenthesized": string;
|
|
182
|
+
"jsonc/no-plus-sign": string;
|
|
183
|
+
"jsonc/no-regexp-literals": string;
|
|
184
|
+
"jsonc/no-sparse-arrays": string;
|
|
185
|
+
"jsonc/no-template-literals": string;
|
|
186
|
+
"jsonc/no-undefined-value": string;
|
|
187
|
+
"jsonc/no-unicode-codepoint-escapes": string;
|
|
188
|
+
"jsonc/no-useless-escape": string;
|
|
189
|
+
"jsonc/quote-props": string;
|
|
190
|
+
"jsonc/quotes": string;
|
|
191
|
+
"jsonc/space-unary-ops": string;
|
|
192
|
+
"jsonc/valid-json-number": string;
|
|
193
|
+
"jsonc/vue-custom-block/no-parsing-error": string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
"recommended-with-json5": {
|
|
197
|
+
extends: string[];
|
|
198
|
+
rules: {
|
|
199
|
+
"jsonc/no-bigint-literals": string;
|
|
200
|
+
"jsonc/no-binary-expression": string;
|
|
201
|
+
"jsonc/no-binary-numeric-literals": string;
|
|
202
|
+
"jsonc/no-dupe-keys": string;
|
|
203
|
+
"jsonc/no-escape-sequence-in-identifier": string;
|
|
204
|
+
"jsonc/no-number-props": string;
|
|
205
|
+
"jsonc/no-numeric-separators": string;
|
|
206
|
+
"jsonc/no-octal-numeric-literals": string;
|
|
207
|
+
"jsonc/no-octal": string;
|
|
208
|
+
"jsonc/no-parenthesized": string;
|
|
209
|
+
"jsonc/no-regexp-literals": string;
|
|
210
|
+
"jsonc/no-sparse-arrays": string;
|
|
211
|
+
"jsonc/no-template-literals": string;
|
|
212
|
+
"jsonc/no-undefined-value": string;
|
|
213
|
+
"jsonc/no-unicode-codepoint-escapes": string;
|
|
214
|
+
"jsonc/no-useless-escape": string;
|
|
215
|
+
"jsonc/space-unary-ops": string;
|
|
216
|
+
"jsonc/vue-custom-block/no-parsing-error": string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
prettier: {
|
|
220
|
+
extends: string[];
|
|
221
|
+
rules: {
|
|
222
|
+
"jsonc/array-bracket-newline": string;
|
|
223
|
+
"jsonc/array-bracket-spacing": string;
|
|
224
|
+
"jsonc/array-element-newline": string;
|
|
225
|
+
"jsonc/comma-dangle": string;
|
|
226
|
+
"jsonc/comma-style": string;
|
|
227
|
+
"jsonc/indent": string;
|
|
228
|
+
"jsonc/key-spacing": string;
|
|
229
|
+
"jsonc/no-floating-decimal": string;
|
|
230
|
+
"jsonc/object-curly-newline": string;
|
|
231
|
+
"jsonc/object-curly-spacing": string;
|
|
232
|
+
"jsonc/object-property-newline": string;
|
|
233
|
+
"jsonc/quote-props": string;
|
|
234
|
+
"jsonc/quotes": string;
|
|
235
|
+
"jsonc/space-unary-ops": string;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
all: {
|
|
239
|
+
extends: string[];
|
|
240
|
+
rules: {
|
|
241
|
+
[x: string]: string;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
"flat/base": ({
|
|
245
|
+
plugins: {
|
|
246
|
+
readonly jsonc: import("eslint").ESLint.Plugin;
|
|
247
|
+
};
|
|
248
|
+
files?: undefined;
|
|
249
|
+
languageOptions?: undefined;
|
|
250
|
+
rules?: undefined;
|
|
251
|
+
} | {
|
|
252
|
+
files: string[];
|
|
253
|
+
languageOptions: {
|
|
254
|
+
parser: typeof import("jsonc-eslint-parser");
|
|
255
|
+
};
|
|
256
|
+
rules: {
|
|
257
|
+
strict: "off";
|
|
258
|
+
"no-unused-expressions": "off";
|
|
259
|
+
"no-unused-vars": "off";
|
|
260
|
+
};
|
|
261
|
+
plugins?: undefined;
|
|
262
|
+
})[];
|
|
263
|
+
"flat/recommended-with-json": ({
|
|
264
|
+
plugins: {
|
|
265
|
+
readonly jsonc: import("eslint").ESLint.Plugin;
|
|
266
|
+
};
|
|
267
|
+
files?: undefined;
|
|
268
|
+
languageOptions?: undefined;
|
|
269
|
+
rules?: undefined;
|
|
270
|
+
} | {
|
|
271
|
+
files: string[];
|
|
272
|
+
languageOptions: {
|
|
273
|
+
parser: typeof import("jsonc-eslint-parser");
|
|
274
|
+
};
|
|
275
|
+
rules: {
|
|
276
|
+
strict: "off";
|
|
277
|
+
"no-unused-expressions": "off";
|
|
278
|
+
"no-unused-vars": "off";
|
|
279
|
+
};
|
|
280
|
+
plugins?: undefined;
|
|
281
|
+
} | {
|
|
282
|
+
rules: {
|
|
283
|
+
"jsonc/comma-dangle": "error";
|
|
284
|
+
"jsonc/no-bigint-literals": "error";
|
|
285
|
+
"jsonc/no-binary-expression": "error";
|
|
286
|
+
"jsonc/no-binary-numeric-literals": "error";
|
|
287
|
+
"jsonc/no-comments": "error";
|
|
288
|
+
"jsonc/no-dupe-keys": "error";
|
|
289
|
+
"jsonc/no-escape-sequence-in-identifier": "error";
|
|
290
|
+
"jsonc/no-floating-decimal": "error";
|
|
291
|
+
"jsonc/no-hexadecimal-numeric-literals": "error";
|
|
292
|
+
"jsonc/no-infinity": "error";
|
|
293
|
+
"jsonc/no-multi-str": "error";
|
|
294
|
+
"jsonc/no-nan": "error";
|
|
295
|
+
"jsonc/no-number-props": "error";
|
|
296
|
+
"jsonc/no-numeric-separators": "error";
|
|
297
|
+
"jsonc/no-octal-numeric-literals": "error";
|
|
298
|
+
"jsonc/no-octal": "error";
|
|
299
|
+
"jsonc/no-parenthesized": "error";
|
|
300
|
+
"jsonc/no-plus-sign": "error";
|
|
301
|
+
"jsonc/no-regexp-literals": "error";
|
|
302
|
+
"jsonc/no-sparse-arrays": "error";
|
|
303
|
+
"jsonc/no-template-literals": "error";
|
|
304
|
+
"jsonc/no-undefined-value": "error";
|
|
305
|
+
"jsonc/no-unicode-codepoint-escapes": "error";
|
|
306
|
+
"jsonc/no-useless-escape": "error";
|
|
307
|
+
"jsonc/quote-props": "error";
|
|
308
|
+
"jsonc/quotes": "error";
|
|
309
|
+
"jsonc/space-unary-ops": "error";
|
|
310
|
+
"jsonc/valid-json-number": "error";
|
|
311
|
+
"jsonc/vue-custom-block/no-parsing-error": "error";
|
|
312
|
+
};
|
|
313
|
+
})[];
|
|
314
|
+
"flat/recommended-with-jsonc": ({
|
|
315
|
+
plugins: {
|
|
316
|
+
readonly jsonc: import("eslint").ESLint.Plugin;
|
|
317
|
+
};
|
|
318
|
+
files?: undefined;
|
|
319
|
+
languageOptions?: undefined;
|
|
320
|
+
rules?: undefined;
|
|
321
|
+
} | {
|
|
322
|
+
files: string[];
|
|
323
|
+
languageOptions: {
|
|
324
|
+
parser: typeof import("jsonc-eslint-parser");
|
|
325
|
+
};
|
|
326
|
+
rules: {
|
|
327
|
+
strict: "off";
|
|
328
|
+
"no-unused-expressions": "off";
|
|
329
|
+
"no-unused-vars": "off";
|
|
330
|
+
};
|
|
331
|
+
plugins?: undefined;
|
|
332
|
+
} | {
|
|
333
|
+
rules: {
|
|
334
|
+
"jsonc/no-bigint-literals": "error";
|
|
335
|
+
"jsonc/no-binary-expression": "error";
|
|
336
|
+
"jsonc/no-binary-numeric-literals": "error";
|
|
337
|
+
"jsonc/no-dupe-keys": "error";
|
|
338
|
+
"jsonc/no-escape-sequence-in-identifier": "error";
|
|
339
|
+
"jsonc/no-floating-decimal": "error";
|
|
340
|
+
"jsonc/no-hexadecimal-numeric-literals": "error";
|
|
341
|
+
"jsonc/no-infinity": "error";
|
|
342
|
+
"jsonc/no-multi-str": "error";
|
|
343
|
+
"jsonc/no-nan": "error";
|
|
344
|
+
"jsonc/no-number-props": "error";
|
|
345
|
+
"jsonc/no-numeric-separators": "error";
|
|
346
|
+
"jsonc/no-octal-numeric-literals": "error";
|
|
347
|
+
"jsonc/no-octal": "error";
|
|
348
|
+
"jsonc/no-parenthesized": "error";
|
|
349
|
+
"jsonc/no-plus-sign": "error";
|
|
350
|
+
"jsonc/no-regexp-literals": "error";
|
|
351
|
+
"jsonc/no-sparse-arrays": "error";
|
|
352
|
+
"jsonc/no-template-literals": "error";
|
|
353
|
+
"jsonc/no-undefined-value": "error";
|
|
354
|
+
"jsonc/no-unicode-codepoint-escapes": "error";
|
|
355
|
+
"jsonc/no-useless-escape": "error";
|
|
356
|
+
"jsonc/quote-props": "error";
|
|
357
|
+
"jsonc/quotes": "error";
|
|
358
|
+
"jsonc/space-unary-ops": "error";
|
|
359
|
+
"jsonc/valid-json-number": "error";
|
|
360
|
+
"jsonc/vue-custom-block/no-parsing-error": "error";
|
|
361
|
+
};
|
|
362
|
+
})[];
|
|
363
|
+
"flat/recommended-with-json5": ({
|
|
364
|
+
plugins: {
|
|
365
|
+
readonly jsonc: import("eslint").ESLint.Plugin;
|
|
366
|
+
};
|
|
367
|
+
files?: undefined;
|
|
368
|
+
languageOptions?: undefined;
|
|
369
|
+
rules?: undefined;
|
|
370
|
+
} | {
|
|
371
|
+
files: string[];
|
|
372
|
+
languageOptions: {
|
|
373
|
+
parser: typeof import("jsonc-eslint-parser");
|
|
374
|
+
};
|
|
375
|
+
rules: {
|
|
376
|
+
strict: "off";
|
|
377
|
+
"no-unused-expressions": "off";
|
|
378
|
+
"no-unused-vars": "off";
|
|
379
|
+
};
|
|
380
|
+
plugins?: undefined;
|
|
381
|
+
} | {
|
|
382
|
+
rules: {
|
|
383
|
+
"jsonc/no-bigint-literals": "error";
|
|
384
|
+
"jsonc/no-binary-expression": "error";
|
|
385
|
+
"jsonc/no-binary-numeric-literals": "error";
|
|
386
|
+
"jsonc/no-dupe-keys": "error";
|
|
387
|
+
"jsonc/no-escape-sequence-in-identifier": "error";
|
|
388
|
+
"jsonc/no-number-props": "error";
|
|
389
|
+
"jsonc/no-numeric-separators": "error";
|
|
390
|
+
"jsonc/no-octal-numeric-literals": "error";
|
|
391
|
+
"jsonc/no-octal": "error";
|
|
392
|
+
"jsonc/no-parenthesized": "error";
|
|
393
|
+
"jsonc/no-regexp-literals": "error";
|
|
394
|
+
"jsonc/no-sparse-arrays": "error";
|
|
395
|
+
"jsonc/no-template-literals": "error";
|
|
396
|
+
"jsonc/no-undefined-value": "error";
|
|
397
|
+
"jsonc/no-unicode-codepoint-escapes": "error";
|
|
398
|
+
"jsonc/no-useless-escape": "error";
|
|
399
|
+
"jsonc/space-unary-ops": "error";
|
|
400
|
+
"jsonc/vue-custom-block/no-parsing-error": "error";
|
|
401
|
+
};
|
|
402
|
+
})[];
|
|
403
|
+
"flat/prettier": ({
|
|
404
|
+
plugins: {
|
|
405
|
+
readonly jsonc: import("eslint").ESLint.Plugin;
|
|
406
|
+
};
|
|
407
|
+
files?: undefined;
|
|
408
|
+
languageOptions?: undefined;
|
|
409
|
+
rules?: undefined;
|
|
410
|
+
} | {
|
|
411
|
+
files: string[];
|
|
412
|
+
languageOptions: {
|
|
413
|
+
parser: typeof import("jsonc-eslint-parser");
|
|
414
|
+
};
|
|
415
|
+
rules: {
|
|
416
|
+
strict: "off";
|
|
417
|
+
"no-unused-expressions": "off";
|
|
418
|
+
"no-unused-vars": "off";
|
|
419
|
+
};
|
|
420
|
+
plugins?: undefined;
|
|
421
|
+
} | {
|
|
422
|
+
rules: {
|
|
423
|
+
"jsonc/array-bracket-newline": "off";
|
|
424
|
+
"jsonc/array-bracket-spacing": "off";
|
|
425
|
+
"jsonc/array-element-newline": "off";
|
|
426
|
+
"jsonc/comma-dangle": "off";
|
|
427
|
+
"jsonc/comma-style": "off";
|
|
428
|
+
"jsonc/indent": "off";
|
|
429
|
+
"jsonc/key-spacing": "off";
|
|
430
|
+
"jsonc/no-floating-decimal": "off";
|
|
431
|
+
"jsonc/object-curly-newline": "off";
|
|
432
|
+
"jsonc/object-curly-spacing": "off";
|
|
433
|
+
"jsonc/object-property-newline": "off";
|
|
434
|
+
"jsonc/quote-props": "off";
|
|
435
|
+
"jsonc/quotes": "off";
|
|
436
|
+
"jsonc/space-unary-ops": "off";
|
|
437
|
+
};
|
|
438
|
+
})[];
|
|
439
|
+
"flat/all": ({
|
|
440
|
+
plugins: {
|
|
441
|
+
readonly jsonc: import("eslint").ESLint.Plugin;
|
|
442
|
+
};
|
|
443
|
+
files?: undefined;
|
|
444
|
+
languageOptions?: undefined;
|
|
445
|
+
rules?: undefined;
|
|
446
|
+
} | {
|
|
447
|
+
files: string[];
|
|
448
|
+
languageOptions: {
|
|
449
|
+
parser: typeof import("jsonc-eslint-parser");
|
|
450
|
+
};
|
|
451
|
+
rules: {
|
|
452
|
+
strict: "off";
|
|
453
|
+
"no-unused-expressions": "off";
|
|
454
|
+
"no-unused-vars": "off";
|
|
455
|
+
};
|
|
456
|
+
plugins?: undefined;
|
|
457
|
+
} | {
|
|
458
|
+
rules: {
|
|
459
|
+
[rule: string]: import("eslint").Linter.RuleEntry<any[]>;
|
|
460
|
+
};
|
|
461
|
+
})[];
|
|
462
|
+
};
|
|
463
|
+
rules: {
|
|
464
|
+
[key: string]: import("eslint-plugin-jsonc/types").RuleModule<unknown[]>;
|
|
465
|
+
};
|
|
466
|
+
parseForESLint: typeof import("eslint-plugin-jsonc").parseForESLint;
|
|
467
|
+
parseJSON: typeof import("jsonc-eslint-parser").parseJSON;
|
|
468
|
+
traverseNodes: typeof import("eslint-plugin-jsonc").traverseNodes;
|
|
469
|
+
getStaticJSONValue: typeof import("eslint-plugin-jsonc").getStaticJSONValue;
|
|
470
|
+
};
|
|
110
471
|
yml: {
|
|
111
472
|
meta: typeof import("eslint-plugin-yml/lib/meta");
|
|
112
473
|
configs: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../src/imports/plugins.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../src/imports/plugins.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,IAAI,EAAE,EAAE,MAAM,mBAAmB,CAAC;AAEjD,OAAO,IAAI,MAAM,6BAA6B,CAAC;AAC/C,OAAO,UAAU,MAAM,2BAA2B,CAAC;AAEnD,OAAO,GAAG,MAAM,aAAa,CAAC;AAC9B,OAAO,IAAI,MAAM,cAAc,CAAC;;;;;;QAMpB,OAAO,CAAC,OAAO,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAId,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAM46nB,CAAC;+BAA4C,CAAC;qBAAkC,CAAC;;;;;;;;;;;uBAA+X,CAAC;;;;;;qBAAmN,CAAC;+BAA4C,CAAC;qBAAkC,CAAC;;;;;;;;;;;uBAA+X,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAAu3D,CAAC;+BAA4C,CAAC;qBAAkC,CAAC;;;;;;;;;;;uBAA+X,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAAkxD,CAAC;+BAA4C,CAAC;qBAAkC,CAAC;;;;;;;;;;;uBAA+X,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAAwyC,CAAC;+BAA4C,CAAC;qBAAkC,CAAC;;;;;;;;;;;uBAA+X,CAAC;;;;;;;;;;;;;;;;;;;;;;;qBAA89B,CAAC;+BAA4C,CAAC;qBAAkC,CAAC;;;;;;;;;;;uBAA+X,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAAl50B,CAAC;+BAAwC,CAAC;qBAA8B,CAAC;;;;;;;;;;;uBAA8V,CAAC;;;;;;qBAA+K,CAAC;+BAAwC,CAAC;qBAA8B,CAAC;;;;;;;;;;;uBAA8V,CAAC;;;;;;;;;;;;;;;;qBAAolB,CAAC;+BAAwC,CAAC;qBAA8B,CAAC;;;;;;;;;;;uBAA8V,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAA0wC,CAAC;+BAAwC,CAAC;qBAA8B,CAAC;;;;;;;;;;;uBAA8V,CAAC;;;;;;;;;;;;;;;;;;;;;;;AAZriM,wBAWE"}
|
package/dist/imports/plugins.js
CHANGED
|
@@ -9,15 +9,15 @@ import json from "@eslint/json";
|
|
|
9
9
|
import jsonc from "eslint-plugin-jsonc";
|
|
10
10
|
import yml from "eslint-plugin-yml";
|
|
11
11
|
export default {
|
|
12
|
-
stylistic
|
|
12
|
+
stylistic,
|
|
13
13
|
ts: ts,
|
|
14
14
|
mocha,
|
|
15
15
|
chai,
|
|
16
16
|
"chai-expect": chaiExpect,
|
|
17
|
-
html,
|
|
17
|
+
html: html,
|
|
18
18
|
css,
|
|
19
19
|
json,
|
|
20
|
-
jsonc
|
|
20
|
+
jsonc,
|
|
21
21
|
yml,
|
|
22
22
|
};
|
|
23
23
|
//# sourceMappingURL=plugins.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugins.js","sourceRoot":"","sources":["../../src/imports/plugins.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,MAAM,IAAI,EAAE,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,IAAI,MAAM,6BAA6B,CAAC;AAC/C,OAAO,UAAU,MAAM,2BAA2B,CAAC;AACnD,OAAO,IAAI,MAAM,4BAA4B,CAAC;AAC9C,OAAO,GAAG,MAAM,aAAa,CAAC;AAC9B,OAAO,IAAI,MAAM,cAAc,CAAC;AAChC,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,GAAG,MAAM,mBAAmB,CAAC;AAEpC,eAAe;IACb,SAAS
|
|
1
|
+
{"version":3,"file":"plugins.js","sourceRoot":"","sources":["../../src/imports/plugins.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,MAAM,IAAI,EAAE,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,IAAI,MAAM,6BAA6B,CAAC;AAC/C,OAAO,UAAU,MAAM,2BAA2B,CAAC;AACnD,OAAO,IAAI,MAAM,4BAA4B,CAAC;AAC9C,OAAO,GAAG,MAAM,aAAa,CAAC;AAC9B,OAAO,IAAI,MAAM,cAAc,CAAC;AAChC,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,GAAG,MAAM,mBAAmB,CAAC;AAEpC,eAAe;IACb,SAAS;IACT,EAAE,EAAE,EAAwB;IAC5B,KAAK;IACL,IAAI;IACJ,aAAa,EAAE,UAAU;IACzB,IAAI,EAAE,IAAc;IACpB,GAAG;IACH,IAAI;IACJ,KAAK;IACL,GAAG;CACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$schema": "https://json.schemastore.org/package",
|
|
4
4
|
"$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
|
|
5
5
|
"name": "linted",
|
|
6
|
-
"version": "33.
|
|
6
|
+
"version": "33.7.1",
|
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted",
|
|
8
8
|
"description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
|
|
9
9
|
"keywords": [
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"@eslint/css": "0.14.1",
|
|
57
57
|
"@eslint/json": "0.14.0",
|
|
58
58
|
"@eslinted/core": "30.1.0",
|
|
59
|
-
"@eslinted/defaults": "17.
|
|
60
|
-
"@html-eslint/eslint-plugin": "0.
|
|
59
|
+
"@eslinted/defaults": "17.4.0",
|
|
60
|
+
"@html-eslint/eslint-plugin": "0.49.0",
|
|
61
61
|
"@stylistic/eslint-plugin": "5.6.1",
|
|
62
62
|
"eslint-plugin-chai-expect": "3.1.0",
|
|
63
63
|
"eslint-plugin-chai-friendly": "1.1.0",
|
package/src/imports/plugins.ts
CHANGED
|
@@ -10,14 +10,14 @@ import jsonc from "eslint-plugin-jsonc";
|
|
|
10
10
|
import yml from "eslint-plugin-yml";
|
|
11
11
|
|
|
12
12
|
export default {
|
|
13
|
-
stylistic
|
|
13
|
+
stylistic,
|
|
14
14
|
ts: ts as NoInfer<typeof ts>,
|
|
15
15
|
mocha,
|
|
16
16
|
chai,
|
|
17
17
|
"chai-expect": chaiExpect,
|
|
18
|
-
html,
|
|
18
|
+
html: html as object,
|
|
19
19
|
css,
|
|
20
20
|
json,
|
|
21
|
-
jsonc
|
|
21
|
+
jsonc,
|
|
22
22
|
yml,
|
|
23
23
|
};
|