eslint-plugin-better-tailwindcss 4.6.0 → 4.6.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.
Files changed (69) hide show
  1. package/lib/configs/config.d.ts +30 -2862
  2. package/lib/configs/config.d.ts.map +1 -1
  3. package/lib/configs/config.js +1 -0
  4. package/lib/configs/config.js.map +1 -1
  5. package/lib/options/descriptions.d.ts +201 -201
  6. package/lib/options/schemas/attributes.d.ts +34 -34
  7. package/lib/options/schemas/attributes.d.ts.map +1 -1
  8. package/lib/options/schemas/callees.d.ts +34 -34
  9. package/lib/options/schemas/callees.d.ts.map +1 -1
  10. package/lib/options/schemas/common.d.ts +14 -14
  11. package/lib/options/schemas/matchers.d.ts +8 -8
  12. package/lib/options/schemas/selectors.d.ts +447 -447
  13. package/lib/options/schemas/tags.d.ts +34 -34
  14. package/lib/options/schemas/tags.d.ts.map +1 -1
  15. package/lib/options/schemas/variables.d.ts +34 -34
  16. package/lib/options/schemas/variables.d.ts.map +1 -1
  17. package/lib/parsers/es.js.map +1 -1
  18. package/lib/rules/enforce-canonical-classes.d.ts +2 -205
  19. package/lib/rules/enforce-canonical-classes.d.ts.map +1 -1
  20. package/lib/rules/enforce-canonical-classes.js +1 -1
  21. package/lib/rules/enforce-consistent-class-order.d.ts +3 -208
  22. package/lib/rules/enforce-consistent-class-order.d.ts.map +1 -1
  23. package/lib/rules/enforce-consistent-important-position.d.ts +2 -203
  24. package/lib/rules/enforce-consistent-important-position.d.ts.map +1 -1
  25. package/lib/rules/enforce-consistent-line-wrapping.d.ts +3 -211
  26. package/lib/rules/enforce-consistent-line-wrapping.d.ts.map +1 -1
  27. package/lib/rules/enforce-consistent-variable-syntax.d.ts +2 -203
  28. package/lib/rules/enforce-consistent-variable-syntax.d.ts.map +1 -1
  29. package/lib/rules/enforce-consistent-variable-syntax.js +1 -1
  30. package/lib/rules/enforce-consistent-variant-order.d.ts +2 -203
  31. package/lib/rules/enforce-consistent-variant-order.d.ts.map +1 -1
  32. package/lib/rules/enforce-logical-properties.d.ts +2 -203
  33. package/lib/rules/enforce-logical-properties.d.ts.map +1 -1
  34. package/lib/rules/enforce-logical-properties.js +1 -1
  35. package/lib/rules/enforce-shorthand-classes.d.ts +2 -203
  36. package/lib/rules/enforce-shorthand-classes.d.ts.map +1 -1
  37. package/lib/rules/no-conflicting-classes.d.ts +2 -203
  38. package/lib/rules/no-conflicting-classes.d.ts.map +1 -1
  39. package/lib/rules/no-deprecated-classes.d.ts +2 -203
  40. package/lib/rules/no-deprecated-classes.d.ts.map +1 -1
  41. package/lib/rules/no-deprecated-classes.js.map +1 -1
  42. package/lib/rules/no-duplicate-classes.d.ts +2 -203
  43. package/lib/rules/no-duplicate-classes.d.ts.map +1 -1
  44. package/lib/rules/no-restricted-classes.d.ts +2 -207
  45. package/lib/rules/no-restricted-classes.d.ts.map +1 -1
  46. package/lib/rules/no-unknown-classes.d.ts +2 -203
  47. package/lib/rules/no-unknown-classes.d.ts.map +1 -1
  48. package/lib/rules/no-unknown-classes.js +1 -1
  49. package/lib/rules/no-unnecessary-whitespace.d.ts +2 -203
  50. package/lib/rules/no-unnecessary-whitespace.d.ts.map +1 -1
  51. package/lib/types/rule.d.ts +6 -6
  52. package/lib/types/rule.d.ts.map +1 -1
  53. package/lib/utils/matchers.d.ts.map +1 -1
  54. package/lib/utils/matchers.js +20 -13
  55. package/lib/utils/matchers.js.map +1 -1
  56. package/lib/utils/rule.d.ts +2 -8
  57. package/lib/utils/rule.d.ts.map +1 -1
  58. package/lib/utils/rule.js +1 -1
  59. package/lib/utils/rule.js.map +1 -1
  60. package/lib/utils/utils.js +1 -1
  61. package/package.json +39 -35
  62. package/lib/utils/project.d.ts +0 -4
  63. package/lib/utils/project.d.ts.map +0 -1
  64. package/lib/utils/project.js +0 -22
  65. package/lib/utils/project.js.map +0 -1
  66. package/lib/utils/regex.d.ts +0 -2
  67. package/lib/utils/regex.d.ts.map +0 -1
  68. package/lib/utils/regex.js +0 -24
  69. package/lib/utils/regex.js.map +0 -1
@@ -1,4 +1,3 @@
1
- import type { Linter } from "eslint";
2
1
  type Severity = "error" | "warn";
3
2
  type PluginRules = typeof rules[number];
4
3
  type RuleObject = {
@@ -206,218 +205,13 @@ declare const rules: readonly [{
206
205
  } & {
207
206
  componentClassOrder: "asc" | "desc" | "preserve";
208
207
  componentClassPosition: "start" | "end";
209
- order: "asc" | "desc" | "official" | "strict";
208
+ order: "strict" | "asc" | "desc" | "official";
210
209
  unknownClassOrder: "asc" | "desc" | "preserve";
211
210
  unknownClassPosition: "start" | "end";
212
211
  };
213
212
  recommended: true;
214
213
  rule: {
215
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
216
- LangOptions: Linter.LanguageOptions;
217
- Code: import("eslint").SourceCode;
218
- RuleOptions: [Required<{
219
- cwd?: string | undefined;
220
- rootFontSize?: number | undefined;
221
- detectComponentClasses: boolean;
222
- tsconfig?: string | undefined;
223
- tailwindConfig?: string | undefined;
224
- messageStyle: "visual" | "compact" | "raw";
225
- entryPoint?: string | undefined;
226
- tags?: (string | [string, ({
227
- match: import("../types/rule.js").MatcherType.String;
228
- } | {
229
- match: import("../types/rule.js").MatcherType.ObjectKey;
230
- pathPattern?: string | undefined;
231
- } | {
232
- match: import("../types/rule.js").MatcherType.ObjectValue;
233
- pathPattern?: string | undefined;
234
- })[]])[] | undefined;
235
- variables?: (string | [string, ({
236
- match: import("../types/rule.js").MatcherType.String;
237
- } | {
238
- match: import("../types/rule.js").MatcherType.ObjectKey;
239
- pathPattern?: string | undefined;
240
- } | {
241
- match: import("../types/rule.js").MatcherType.ObjectValue;
242
- pathPattern?: string | undefined;
243
- })[]])[] | undefined;
244
- attributes?: (string | [string, ({
245
- match: import("../types/rule.js").MatcherType.String;
246
- } | {
247
- match: import("../types/rule.js").MatcherType.ObjectKey;
248
- pathPattern?: string | undefined;
249
- } | {
250
- match: import("../types/rule.js").MatcherType.ObjectValue;
251
- pathPattern?: string | undefined;
252
- })[]])[] | undefined;
253
- callees?: (string | [string, ({
254
- match: import("../types/rule.js").MatcherType.String;
255
- } | {
256
- match: import("../types/rule.js").MatcherType.ObjectKey;
257
- pathPattern?: string | undefined;
258
- } | {
259
- match: import("../types/rule.js").MatcherType.ObjectValue;
260
- pathPattern?: string | undefined;
261
- })[]])[] | undefined;
262
- selectors: ({
263
- callTarget?: number | "all" | "first" | "last" | undefined;
264
- kind: import("../types/rule.js").SelectorKind.Callee;
265
- match?: ({
266
- type: import("../types/rule.js").MatcherType.String;
267
- } | {
268
- path?: string | undefined;
269
- type: import("../types/rule.js").MatcherType.ObjectKey;
270
- } | {
271
- path?: string | undefined;
272
- type: import("../types/rule.js").MatcherType.ObjectValue;
273
- } | {
274
- match: ({
275
- type: import("../types/rule.js").MatcherType.String;
276
- } | {
277
- path?: string | undefined;
278
- type: import("../types/rule.js").MatcherType.ObjectKey;
279
- } | {
280
- path?: string | undefined;
281
- type: import("../types/rule.js").MatcherType.ObjectValue;
282
- })[];
283
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
284
- })[] | undefined;
285
- name: string;
286
- path?: string | undefined;
287
- targetArgument?: number | "all" | "first" | "last" | undefined;
288
- targetCall?: number | "all" | "first" | "last" | undefined;
289
- } | {
290
- callTarget?: number | "all" | "first" | "last" | undefined;
291
- kind: import("../types/rule.js").SelectorKind.Callee;
292
- match?: ({
293
- type: import("../types/rule.js").MatcherType.String;
294
- } | {
295
- path?: string | undefined;
296
- type: import("../types/rule.js").MatcherType.ObjectKey;
297
- } | {
298
- path?: string | undefined;
299
- type: import("../types/rule.js").MatcherType.ObjectValue;
300
- } | {
301
- match: ({
302
- type: import("../types/rule.js").MatcherType.String;
303
- } | {
304
- path?: string | undefined;
305
- type: import("../types/rule.js").MatcherType.ObjectKey;
306
- } | {
307
- path?: string | undefined;
308
- type: import("../types/rule.js").MatcherType.ObjectValue;
309
- })[];
310
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
311
- })[] | undefined;
312
- name?: string | undefined;
313
- path: string;
314
- targetArgument?: number | "all" | "first" | "last" | undefined;
315
- targetCall?: number | "all" | "first" | "last" | undefined;
316
- } | {
317
- kind: import("../types/rule.js").SelectorKind.Tag;
318
- match?: ({
319
- type: import("../types/rule.js").MatcherType.String;
320
- } | {
321
- path?: string | undefined;
322
- type: import("../types/rule.js").MatcherType.ObjectKey;
323
- } | {
324
- path?: string | undefined;
325
- type: import("../types/rule.js").MatcherType.ObjectValue;
326
- } | {
327
- match: ({
328
- type: import("../types/rule.js").MatcherType.String;
329
- } | {
330
- path?: string | undefined;
331
- type: import("../types/rule.js").MatcherType.ObjectKey;
332
- } | {
333
- path?: string | undefined;
334
- type: import("../types/rule.js").MatcherType.ObjectValue;
335
- })[];
336
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
337
- })[] | undefined;
338
- name: string;
339
- path?: string | undefined;
340
- } | {
341
- kind: import("../types/rule.js").SelectorKind.Tag;
342
- match?: ({
343
- type: import("../types/rule.js").MatcherType.String;
344
- } | {
345
- path?: string | undefined;
346
- type: import("../types/rule.js").MatcherType.ObjectKey;
347
- } | {
348
- path?: string | undefined;
349
- type: import("../types/rule.js").MatcherType.ObjectValue;
350
- } | {
351
- match: ({
352
- type: import("../types/rule.js").MatcherType.String;
353
- } | {
354
- path?: string | undefined;
355
- type: import("../types/rule.js").MatcherType.ObjectKey;
356
- } | {
357
- path?: string | undefined;
358
- type: import("../types/rule.js").MatcherType.ObjectValue;
359
- })[];
360
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
361
- })[] | undefined;
362
- name?: string | undefined;
363
- path: string;
364
- } | {
365
- kind: import("../types/rule.js").SelectorKind.Attribute;
366
- match?: ({
367
- type: import("../types/rule.js").MatcherType.String;
368
- } | {
369
- path?: string | undefined;
370
- type: import("../types/rule.js").MatcherType.ObjectKey;
371
- } | {
372
- path?: string | undefined;
373
- type: import("../types/rule.js").MatcherType.ObjectValue;
374
- } | {
375
- match: ({
376
- type: import("../types/rule.js").MatcherType.String;
377
- } | {
378
- path?: string | undefined;
379
- type: import("../types/rule.js").MatcherType.ObjectKey;
380
- } | {
381
- path?: string | undefined;
382
- type: import("../types/rule.js").MatcherType.ObjectValue;
383
- })[];
384
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
385
- })[] | undefined;
386
- name: string;
387
- } | {
388
- kind: import("../types/rule.js").SelectorKind.Variable;
389
- match?: ({
390
- type: import("../types/rule.js").MatcherType.String;
391
- } | {
392
- path?: string | undefined;
393
- type: import("../types/rule.js").MatcherType.ObjectKey;
394
- } | {
395
- path?: string | undefined;
396
- type: import("../types/rule.js").MatcherType.ObjectValue;
397
- } | {
398
- match: ({
399
- type: import("../types/rule.js").MatcherType.String;
400
- } | {
401
- path?: string | undefined;
402
- type: import("../types/rule.js").MatcherType.ObjectKey;
403
- } | {
404
- path?: string | undefined;
405
- type: import("../types/rule.js").MatcherType.ObjectValue;
406
- })[];
407
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
408
- })[] | undefined;
409
- name: string;
410
- })[];
411
- } & {
412
- componentClassOrder: "asc" | "desc" | "preserve";
413
- componentClassPosition: "start" | "end";
414
- order: "asc" | "desc" | "official" | "strict";
415
- unknownClassOrder: "asc" | "desc" | "preserve";
416
- unknownClassPosition: "start" | "end";
417
- }>];
418
- Node: import("eslint").JSSyntaxElement;
419
- MessageIds: "order";
420
- }>) => import("eslint").Rule.RuleListener;
214
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
421
215
  meta: {
422
216
  messages?: {
423
217
  readonly order: "Incorrect class order. Expected\n\n{{ notSorted }}\n\nto be\n\n{{ sorted }}";
@@ -430,7 +224,7 @@ declare const rules: readonly [{
430
224
  fixable: "code" | undefined;
431
225
  schema: {
432
226
  additionalProperties: false;
433
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
227
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
434
228
  type: "object";
435
229
  }[];
436
230
  type: "problem" | "layout";
@@ -640,208 +434,7 @@ declare const rules: readonly [{
640
434
  };
641
435
  recommended: false;
642
436
  rule: {
643
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
644
- LangOptions: Linter.LanguageOptions;
645
- Code: import("eslint").SourceCode;
646
- RuleOptions: [Required<{
647
- cwd?: string | undefined;
648
- rootFontSize?: number | undefined;
649
- detectComponentClasses: boolean;
650
- tsconfig?: string | undefined;
651
- tailwindConfig?: string | undefined;
652
- messageStyle: "visual" | "compact" | "raw";
653
- entryPoint?: string | undefined;
654
- tags?: (string | [string, ({
655
- match: import("../types/rule.js").MatcherType.String;
656
- } | {
657
- match: import("../types/rule.js").MatcherType.ObjectKey;
658
- pathPattern?: string | undefined;
659
- } | {
660
- match: import("../types/rule.js").MatcherType.ObjectValue;
661
- pathPattern?: string | undefined;
662
- })[]])[] | undefined;
663
- variables?: (string | [string, ({
664
- match: import("../types/rule.js").MatcherType.String;
665
- } | {
666
- match: import("../types/rule.js").MatcherType.ObjectKey;
667
- pathPattern?: string | undefined;
668
- } | {
669
- match: import("../types/rule.js").MatcherType.ObjectValue;
670
- pathPattern?: string | undefined;
671
- })[]])[] | undefined;
672
- attributes?: (string | [string, ({
673
- match: import("../types/rule.js").MatcherType.String;
674
- } | {
675
- match: import("../types/rule.js").MatcherType.ObjectKey;
676
- pathPattern?: string | undefined;
677
- } | {
678
- match: import("../types/rule.js").MatcherType.ObjectValue;
679
- pathPattern?: string | undefined;
680
- })[]])[] | undefined;
681
- callees?: (string | [string, ({
682
- match: import("../types/rule.js").MatcherType.String;
683
- } | {
684
- match: import("../types/rule.js").MatcherType.ObjectKey;
685
- pathPattern?: string | undefined;
686
- } | {
687
- match: import("../types/rule.js").MatcherType.ObjectValue;
688
- pathPattern?: string | undefined;
689
- })[]])[] | undefined;
690
- selectors: ({
691
- callTarget?: number | "all" | "first" | "last" | undefined;
692
- kind: import("../types/rule.js").SelectorKind.Callee;
693
- match?: ({
694
- type: import("../types/rule.js").MatcherType.String;
695
- } | {
696
- path?: string | undefined;
697
- type: import("../types/rule.js").MatcherType.ObjectKey;
698
- } | {
699
- path?: string | undefined;
700
- type: import("../types/rule.js").MatcherType.ObjectValue;
701
- } | {
702
- match: ({
703
- type: import("../types/rule.js").MatcherType.String;
704
- } | {
705
- path?: string | undefined;
706
- type: import("../types/rule.js").MatcherType.ObjectKey;
707
- } | {
708
- path?: string | undefined;
709
- type: import("../types/rule.js").MatcherType.ObjectValue;
710
- })[];
711
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
712
- })[] | undefined;
713
- name: string;
714
- path?: string | undefined;
715
- targetArgument?: number | "all" | "first" | "last" | undefined;
716
- targetCall?: number | "all" | "first" | "last" | undefined;
717
- } | {
718
- callTarget?: number | "all" | "first" | "last" | undefined;
719
- kind: import("../types/rule.js").SelectorKind.Callee;
720
- match?: ({
721
- type: import("../types/rule.js").MatcherType.String;
722
- } | {
723
- path?: string | undefined;
724
- type: import("../types/rule.js").MatcherType.ObjectKey;
725
- } | {
726
- path?: string | undefined;
727
- type: import("../types/rule.js").MatcherType.ObjectValue;
728
- } | {
729
- match: ({
730
- type: import("../types/rule.js").MatcherType.String;
731
- } | {
732
- path?: string | undefined;
733
- type: import("../types/rule.js").MatcherType.ObjectKey;
734
- } | {
735
- path?: string | undefined;
736
- type: import("../types/rule.js").MatcherType.ObjectValue;
737
- })[];
738
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
739
- })[] | undefined;
740
- name?: string | undefined;
741
- path: string;
742
- targetArgument?: number | "all" | "first" | "last" | undefined;
743
- targetCall?: number | "all" | "first" | "last" | undefined;
744
- } | {
745
- kind: import("../types/rule.js").SelectorKind.Tag;
746
- match?: ({
747
- type: import("../types/rule.js").MatcherType.String;
748
- } | {
749
- path?: string | undefined;
750
- type: import("../types/rule.js").MatcherType.ObjectKey;
751
- } | {
752
- path?: string | undefined;
753
- type: import("../types/rule.js").MatcherType.ObjectValue;
754
- } | {
755
- match: ({
756
- type: import("../types/rule.js").MatcherType.String;
757
- } | {
758
- path?: string | undefined;
759
- type: import("../types/rule.js").MatcherType.ObjectKey;
760
- } | {
761
- path?: string | undefined;
762
- type: import("../types/rule.js").MatcherType.ObjectValue;
763
- })[];
764
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
765
- })[] | undefined;
766
- name: string;
767
- path?: string | undefined;
768
- } | {
769
- kind: import("../types/rule.js").SelectorKind.Tag;
770
- match?: ({
771
- type: import("../types/rule.js").MatcherType.String;
772
- } | {
773
- path?: string | undefined;
774
- type: import("../types/rule.js").MatcherType.ObjectKey;
775
- } | {
776
- path?: string | undefined;
777
- type: import("../types/rule.js").MatcherType.ObjectValue;
778
- } | {
779
- match: ({
780
- type: import("../types/rule.js").MatcherType.String;
781
- } | {
782
- path?: string | undefined;
783
- type: import("../types/rule.js").MatcherType.ObjectKey;
784
- } | {
785
- path?: string | undefined;
786
- type: import("../types/rule.js").MatcherType.ObjectValue;
787
- })[];
788
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
789
- })[] | undefined;
790
- name?: string | undefined;
791
- path: string;
792
- } | {
793
- kind: import("../types/rule.js").SelectorKind.Attribute;
794
- match?: ({
795
- type: import("../types/rule.js").MatcherType.String;
796
- } | {
797
- path?: string | undefined;
798
- type: import("../types/rule.js").MatcherType.ObjectKey;
799
- } | {
800
- path?: string | undefined;
801
- type: import("../types/rule.js").MatcherType.ObjectValue;
802
- } | {
803
- match: ({
804
- type: import("../types/rule.js").MatcherType.String;
805
- } | {
806
- path?: string | undefined;
807
- type: import("../types/rule.js").MatcherType.ObjectKey;
808
- } | {
809
- path?: string | undefined;
810
- type: import("../types/rule.js").MatcherType.ObjectValue;
811
- })[];
812
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
813
- })[] | undefined;
814
- name: string;
815
- } | {
816
- kind: import("../types/rule.js").SelectorKind.Variable;
817
- match?: ({
818
- type: import("../types/rule.js").MatcherType.String;
819
- } | {
820
- path?: string | undefined;
821
- type: import("../types/rule.js").MatcherType.ObjectKey;
822
- } | {
823
- path?: string | undefined;
824
- type: import("../types/rule.js").MatcherType.ObjectValue;
825
- } | {
826
- match: ({
827
- type: import("../types/rule.js").MatcherType.String;
828
- } | {
829
- path?: string | undefined;
830
- type: import("../types/rule.js").MatcherType.ObjectKey;
831
- } | {
832
- path?: string | undefined;
833
- type: import("../types/rule.js").MatcherType.ObjectValue;
834
- })[];
835
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
836
- })[] | undefined;
837
- name: string;
838
- })[];
839
- } & {
840
- position?: "recommended" | "legacy" | undefined;
841
- }>];
842
- Node: import("eslint").JSSyntaxElement;
843
- MessageIds: "position";
844
- }>) => import("eslint").Rule.RuleListener;
437
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
845
438
  meta: {
846
439
  messages?: {
847
440
  readonly position: "Incorrect important position. '{{ className }}' should be '{{ fix }}'.";
@@ -854,7 +447,7 @@ declare const rules: readonly [{
854
447
  fixable: "code" | undefined;
855
448
  schema: {
856
449
  additionalProperties: false;
857
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
450
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
858
451
  type: "object";
859
452
  }[];
860
453
  type: "problem" | "layout";
@@ -1067,220 +660,12 @@ declare const rules: readonly [{
1067
660
  lineBreakStyle: "unix" | "windows";
1068
661
  preferSingleLine: boolean;
1069
662
  printWidth: number;
1070
- strictness: "strict" | "loose";
663
+ strictness: "loose" | "strict";
1071
664
  tabWidth: number;
1072
665
  };
1073
666
  recommended: true;
1074
667
  rule: {
1075
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
1076
- LangOptions: Linter.LanguageOptions;
1077
- Code: import("eslint").SourceCode;
1078
- RuleOptions: [Required<{
1079
- cwd?: string | undefined;
1080
- rootFontSize?: number | undefined;
1081
- detectComponentClasses: boolean;
1082
- tsconfig?: string | undefined;
1083
- tailwindConfig?: string | undefined;
1084
- messageStyle: "visual" | "compact" | "raw";
1085
- entryPoint?: string | undefined;
1086
- tags?: (string | [string, ({
1087
- match: import("../types/rule.js").MatcherType.String;
1088
- } | {
1089
- match: import("../types/rule.js").MatcherType.ObjectKey;
1090
- pathPattern?: string | undefined;
1091
- } | {
1092
- match: import("../types/rule.js").MatcherType.ObjectValue;
1093
- pathPattern?: string | undefined;
1094
- })[]])[] | undefined;
1095
- variables?: (string | [string, ({
1096
- match: import("../types/rule.js").MatcherType.String;
1097
- } | {
1098
- match: import("../types/rule.js").MatcherType.ObjectKey;
1099
- pathPattern?: string | undefined;
1100
- } | {
1101
- match: import("../types/rule.js").MatcherType.ObjectValue;
1102
- pathPattern?: string | undefined;
1103
- })[]])[] | undefined;
1104
- attributes?: (string | [string, ({
1105
- match: import("../types/rule.js").MatcherType.String;
1106
- } | {
1107
- match: import("../types/rule.js").MatcherType.ObjectKey;
1108
- pathPattern?: string | undefined;
1109
- } | {
1110
- match: import("../types/rule.js").MatcherType.ObjectValue;
1111
- pathPattern?: string | undefined;
1112
- })[]])[] | undefined;
1113
- callees?: (string | [string, ({
1114
- match: import("../types/rule.js").MatcherType.String;
1115
- } | {
1116
- match: import("../types/rule.js").MatcherType.ObjectKey;
1117
- pathPattern?: string | undefined;
1118
- } | {
1119
- match: import("../types/rule.js").MatcherType.ObjectValue;
1120
- pathPattern?: string | undefined;
1121
- })[]])[] | undefined;
1122
- selectors: ({
1123
- callTarget?: number | "all" | "first" | "last" | undefined;
1124
- kind: import("../types/rule.js").SelectorKind.Callee;
1125
- match?: ({
1126
- type: import("../types/rule.js").MatcherType.String;
1127
- } | {
1128
- path?: string | undefined;
1129
- type: import("../types/rule.js").MatcherType.ObjectKey;
1130
- } | {
1131
- path?: string | undefined;
1132
- type: import("../types/rule.js").MatcherType.ObjectValue;
1133
- } | {
1134
- match: ({
1135
- type: import("../types/rule.js").MatcherType.String;
1136
- } | {
1137
- path?: string | undefined;
1138
- type: import("../types/rule.js").MatcherType.ObjectKey;
1139
- } | {
1140
- path?: string | undefined;
1141
- type: import("../types/rule.js").MatcherType.ObjectValue;
1142
- })[];
1143
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1144
- })[] | undefined;
1145
- name: string;
1146
- path?: string | undefined;
1147
- targetArgument?: number | "all" | "first" | "last" | undefined;
1148
- targetCall?: number | "all" | "first" | "last" | undefined;
1149
- } | {
1150
- callTarget?: number | "all" | "first" | "last" | undefined;
1151
- kind: import("../types/rule.js").SelectorKind.Callee;
1152
- match?: ({
1153
- type: import("../types/rule.js").MatcherType.String;
1154
- } | {
1155
- path?: string | undefined;
1156
- type: import("../types/rule.js").MatcherType.ObjectKey;
1157
- } | {
1158
- path?: string | undefined;
1159
- type: import("../types/rule.js").MatcherType.ObjectValue;
1160
- } | {
1161
- match: ({
1162
- type: import("../types/rule.js").MatcherType.String;
1163
- } | {
1164
- path?: string | undefined;
1165
- type: import("../types/rule.js").MatcherType.ObjectKey;
1166
- } | {
1167
- path?: string | undefined;
1168
- type: import("../types/rule.js").MatcherType.ObjectValue;
1169
- })[];
1170
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1171
- })[] | undefined;
1172
- name?: string | undefined;
1173
- path: string;
1174
- targetArgument?: number | "all" | "first" | "last" | undefined;
1175
- targetCall?: number | "all" | "first" | "last" | undefined;
1176
- } | {
1177
- kind: import("../types/rule.js").SelectorKind.Tag;
1178
- match?: ({
1179
- type: import("../types/rule.js").MatcherType.String;
1180
- } | {
1181
- path?: string | undefined;
1182
- type: import("../types/rule.js").MatcherType.ObjectKey;
1183
- } | {
1184
- path?: string | undefined;
1185
- type: import("../types/rule.js").MatcherType.ObjectValue;
1186
- } | {
1187
- match: ({
1188
- type: import("../types/rule.js").MatcherType.String;
1189
- } | {
1190
- path?: string | undefined;
1191
- type: import("../types/rule.js").MatcherType.ObjectKey;
1192
- } | {
1193
- path?: string | undefined;
1194
- type: import("../types/rule.js").MatcherType.ObjectValue;
1195
- })[];
1196
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1197
- })[] | undefined;
1198
- name: string;
1199
- path?: string | undefined;
1200
- } | {
1201
- kind: import("../types/rule.js").SelectorKind.Tag;
1202
- match?: ({
1203
- type: import("../types/rule.js").MatcherType.String;
1204
- } | {
1205
- path?: string | undefined;
1206
- type: import("../types/rule.js").MatcherType.ObjectKey;
1207
- } | {
1208
- path?: string | undefined;
1209
- type: import("../types/rule.js").MatcherType.ObjectValue;
1210
- } | {
1211
- match: ({
1212
- type: import("../types/rule.js").MatcherType.String;
1213
- } | {
1214
- path?: string | undefined;
1215
- type: import("../types/rule.js").MatcherType.ObjectKey;
1216
- } | {
1217
- path?: string | undefined;
1218
- type: import("../types/rule.js").MatcherType.ObjectValue;
1219
- })[];
1220
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1221
- })[] | undefined;
1222
- name?: string | undefined;
1223
- path: string;
1224
- } | {
1225
- kind: import("../types/rule.js").SelectorKind.Attribute;
1226
- match?: ({
1227
- type: import("../types/rule.js").MatcherType.String;
1228
- } | {
1229
- path?: string | undefined;
1230
- type: import("../types/rule.js").MatcherType.ObjectKey;
1231
- } | {
1232
- path?: string | undefined;
1233
- type: import("../types/rule.js").MatcherType.ObjectValue;
1234
- } | {
1235
- match: ({
1236
- type: import("../types/rule.js").MatcherType.String;
1237
- } | {
1238
- path?: string | undefined;
1239
- type: import("../types/rule.js").MatcherType.ObjectKey;
1240
- } | {
1241
- path?: string | undefined;
1242
- type: import("../types/rule.js").MatcherType.ObjectValue;
1243
- })[];
1244
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1245
- })[] | undefined;
1246
- name: string;
1247
- } | {
1248
- kind: import("../types/rule.js").SelectorKind.Variable;
1249
- match?: ({
1250
- type: import("../types/rule.js").MatcherType.String;
1251
- } | {
1252
- path?: string | undefined;
1253
- type: import("../types/rule.js").MatcherType.ObjectKey;
1254
- } | {
1255
- path?: string | undefined;
1256
- type: import("../types/rule.js").MatcherType.ObjectValue;
1257
- } | {
1258
- match: ({
1259
- type: import("../types/rule.js").MatcherType.String;
1260
- } | {
1261
- path?: string | undefined;
1262
- type: import("../types/rule.js").MatcherType.ObjectKey;
1263
- } | {
1264
- path?: string | undefined;
1265
- type: import("../types/rule.js").MatcherType.ObjectValue;
1266
- })[];
1267
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1268
- })[] | undefined;
1269
- name: string;
1270
- })[];
1271
- } & {
1272
- classesPerLine: number;
1273
- group: "never" | "newLine" | "emptyLine";
1274
- indent: number | "tab";
1275
- lineBreakStyle: "unix" | "windows";
1276
- preferSingleLine: boolean;
1277
- printWidth: number;
1278
- strictness: "strict" | "loose";
1279
- tabWidth: number;
1280
- }>];
1281
- Node: import("eslint").JSSyntaxElement;
1282
- MessageIds: "missing" | "unnecessary";
1283
- }>) => import("eslint").Rule.RuleListener;
668
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
1284
669
  meta: {
1285
670
  messages?: {
1286
671
  readonly missing: "Incorrect line wrapping. Expected\n\n{{ notReadable }}\n\nto be\n\n{{ readable }}";
@@ -1294,7 +679,7 @@ declare const rules: readonly [{
1294
679
  fixable: "code" | undefined;
1295
680
  schema: {
1296
681
  additionalProperties: false;
1297
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
682
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
1298
683
  type: "object";
1299
684
  }[];
1300
685
  type: "problem" | "layout";
@@ -1504,208 +889,7 @@ declare const rules: readonly [{
1504
889
  };
1505
890
  recommended: false;
1506
891
  rule: {
1507
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
1508
- LangOptions: Linter.LanguageOptions;
1509
- Code: import("eslint").SourceCode;
1510
- RuleOptions: [Required<{
1511
- cwd?: string | undefined;
1512
- rootFontSize?: number | undefined;
1513
- detectComponentClasses: boolean;
1514
- tsconfig?: string | undefined;
1515
- tailwindConfig?: string | undefined;
1516
- messageStyle: "visual" | "compact" | "raw";
1517
- entryPoint?: string | undefined;
1518
- tags?: (string | [string, ({
1519
- match: import("../types/rule.js").MatcherType.String;
1520
- } | {
1521
- match: import("../types/rule.js").MatcherType.ObjectKey;
1522
- pathPattern?: string | undefined;
1523
- } | {
1524
- match: import("../types/rule.js").MatcherType.ObjectValue;
1525
- pathPattern?: string | undefined;
1526
- })[]])[] | undefined;
1527
- variables?: (string | [string, ({
1528
- match: import("../types/rule.js").MatcherType.String;
1529
- } | {
1530
- match: import("../types/rule.js").MatcherType.ObjectKey;
1531
- pathPattern?: string | undefined;
1532
- } | {
1533
- match: import("../types/rule.js").MatcherType.ObjectValue;
1534
- pathPattern?: string | undefined;
1535
- })[]])[] | undefined;
1536
- attributes?: (string | [string, ({
1537
- match: import("../types/rule.js").MatcherType.String;
1538
- } | {
1539
- match: import("../types/rule.js").MatcherType.ObjectKey;
1540
- pathPattern?: string | undefined;
1541
- } | {
1542
- match: import("../types/rule.js").MatcherType.ObjectValue;
1543
- pathPattern?: string | undefined;
1544
- })[]])[] | undefined;
1545
- callees?: (string | [string, ({
1546
- match: import("../types/rule.js").MatcherType.String;
1547
- } | {
1548
- match: import("../types/rule.js").MatcherType.ObjectKey;
1549
- pathPattern?: string | undefined;
1550
- } | {
1551
- match: import("../types/rule.js").MatcherType.ObjectValue;
1552
- pathPattern?: string | undefined;
1553
- })[]])[] | undefined;
1554
- selectors: ({
1555
- callTarget?: number | "all" | "first" | "last" | undefined;
1556
- kind: import("../types/rule.js").SelectorKind.Callee;
1557
- match?: ({
1558
- type: import("../types/rule.js").MatcherType.String;
1559
- } | {
1560
- path?: string | undefined;
1561
- type: import("../types/rule.js").MatcherType.ObjectKey;
1562
- } | {
1563
- path?: string | undefined;
1564
- type: import("../types/rule.js").MatcherType.ObjectValue;
1565
- } | {
1566
- match: ({
1567
- type: import("../types/rule.js").MatcherType.String;
1568
- } | {
1569
- path?: string | undefined;
1570
- type: import("../types/rule.js").MatcherType.ObjectKey;
1571
- } | {
1572
- path?: string | undefined;
1573
- type: import("../types/rule.js").MatcherType.ObjectValue;
1574
- })[];
1575
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1576
- })[] | undefined;
1577
- name: string;
1578
- path?: string | undefined;
1579
- targetArgument?: number | "all" | "first" | "last" | undefined;
1580
- targetCall?: number | "all" | "first" | "last" | undefined;
1581
- } | {
1582
- callTarget?: number | "all" | "first" | "last" | undefined;
1583
- kind: import("../types/rule.js").SelectorKind.Callee;
1584
- match?: ({
1585
- type: import("../types/rule.js").MatcherType.String;
1586
- } | {
1587
- path?: string | undefined;
1588
- type: import("../types/rule.js").MatcherType.ObjectKey;
1589
- } | {
1590
- path?: string | undefined;
1591
- type: import("../types/rule.js").MatcherType.ObjectValue;
1592
- } | {
1593
- match: ({
1594
- type: import("../types/rule.js").MatcherType.String;
1595
- } | {
1596
- path?: string | undefined;
1597
- type: import("../types/rule.js").MatcherType.ObjectKey;
1598
- } | {
1599
- path?: string | undefined;
1600
- type: import("../types/rule.js").MatcherType.ObjectValue;
1601
- })[];
1602
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1603
- })[] | undefined;
1604
- name?: string | undefined;
1605
- path: string;
1606
- targetArgument?: number | "all" | "first" | "last" | undefined;
1607
- targetCall?: number | "all" | "first" | "last" | undefined;
1608
- } | {
1609
- kind: import("../types/rule.js").SelectorKind.Tag;
1610
- match?: ({
1611
- type: import("../types/rule.js").MatcherType.String;
1612
- } | {
1613
- path?: string | undefined;
1614
- type: import("../types/rule.js").MatcherType.ObjectKey;
1615
- } | {
1616
- path?: string | undefined;
1617
- type: import("../types/rule.js").MatcherType.ObjectValue;
1618
- } | {
1619
- match: ({
1620
- type: import("../types/rule.js").MatcherType.String;
1621
- } | {
1622
- path?: string | undefined;
1623
- type: import("../types/rule.js").MatcherType.ObjectKey;
1624
- } | {
1625
- path?: string | undefined;
1626
- type: import("../types/rule.js").MatcherType.ObjectValue;
1627
- })[];
1628
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1629
- })[] | undefined;
1630
- name: string;
1631
- path?: string | undefined;
1632
- } | {
1633
- kind: import("../types/rule.js").SelectorKind.Tag;
1634
- match?: ({
1635
- type: import("../types/rule.js").MatcherType.String;
1636
- } | {
1637
- path?: string | undefined;
1638
- type: import("../types/rule.js").MatcherType.ObjectKey;
1639
- } | {
1640
- path?: string | undefined;
1641
- type: import("../types/rule.js").MatcherType.ObjectValue;
1642
- } | {
1643
- match: ({
1644
- type: import("../types/rule.js").MatcherType.String;
1645
- } | {
1646
- path?: string | undefined;
1647
- type: import("../types/rule.js").MatcherType.ObjectKey;
1648
- } | {
1649
- path?: string | undefined;
1650
- type: import("../types/rule.js").MatcherType.ObjectValue;
1651
- })[];
1652
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1653
- })[] | undefined;
1654
- name?: string | undefined;
1655
- path: string;
1656
- } | {
1657
- kind: import("../types/rule.js").SelectorKind.Attribute;
1658
- match?: ({
1659
- type: import("../types/rule.js").MatcherType.String;
1660
- } | {
1661
- path?: string | undefined;
1662
- type: import("../types/rule.js").MatcherType.ObjectKey;
1663
- } | {
1664
- path?: string | undefined;
1665
- type: import("../types/rule.js").MatcherType.ObjectValue;
1666
- } | {
1667
- match: ({
1668
- type: import("../types/rule.js").MatcherType.String;
1669
- } | {
1670
- path?: string | undefined;
1671
- type: import("../types/rule.js").MatcherType.ObjectKey;
1672
- } | {
1673
- path?: string | undefined;
1674
- type: import("../types/rule.js").MatcherType.ObjectValue;
1675
- })[];
1676
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1677
- })[] | undefined;
1678
- name: string;
1679
- } | {
1680
- kind: import("../types/rule.js").SelectorKind.Variable;
1681
- match?: ({
1682
- type: import("../types/rule.js").MatcherType.String;
1683
- } | {
1684
- path?: string | undefined;
1685
- type: import("../types/rule.js").MatcherType.ObjectKey;
1686
- } | {
1687
- path?: string | undefined;
1688
- type: import("../types/rule.js").MatcherType.ObjectValue;
1689
- } | {
1690
- match: ({
1691
- type: import("../types/rule.js").MatcherType.String;
1692
- } | {
1693
- path?: string | undefined;
1694
- type: import("../types/rule.js").MatcherType.ObjectKey;
1695
- } | {
1696
- path?: string | undefined;
1697
- type: import("../types/rule.js").MatcherType.ObjectValue;
1698
- })[];
1699
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
1700
- })[] | undefined;
1701
- name: string;
1702
- })[];
1703
- } & {
1704
- [x: string]: unknown;
1705
- }>];
1706
- Node: import("eslint").JSSyntaxElement;
1707
- MessageIds: "order";
1708
- }>) => import("eslint").Rule.RuleListener;
892
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
1709
893
  meta: {
1710
894
  messages?: {
1711
895
  readonly order: "Incorrect variant order. '{{ className }}' should be '{{ fix }}'.";
@@ -1718,7 +902,7 @@ declare const rules: readonly [{
1718
902
  fixable: "code" | undefined;
1719
903
  schema: {
1720
904
  additionalProperties: false;
1721
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
905
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
1722
906
  type: "object";
1723
907
  }[];
1724
908
  type: "problem" | "layout";
@@ -1928,208 +1112,7 @@ declare const rules: readonly [{
1928
1112
  };
1929
1113
  recommended: false;
1930
1114
  rule: {
1931
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
1932
- LangOptions: Linter.LanguageOptions;
1933
- Code: import("eslint").SourceCode;
1934
- RuleOptions: [Required<{
1935
- cwd?: string | undefined;
1936
- rootFontSize?: number | undefined;
1937
- detectComponentClasses: boolean;
1938
- tsconfig?: string | undefined;
1939
- tailwindConfig?: string | undefined;
1940
- messageStyle: "visual" | "compact" | "raw";
1941
- entryPoint?: string | undefined;
1942
- tags?: (string | [string, ({
1943
- match: import("../types/rule.js").MatcherType.String;
1944
- } | {
1945
- match: import("../types/rule.js").MatcherType.ObjectKey;
1946
- pathPattern?: string | undefined;
1947
- } | {
1948
- match: import("../types/rule.js").MatcherType.ObjectValue;
1949
- pathPattern?: string | undefined;
1950
- })[]])[] | undefined;
1951
- variables?: (string | [string, ({
1952
- match: import("../types/rule.js").MatcherType.String;
1953
- } | {
1954
- match: import("../types/rule.js").MatcherType.ObjectKey;
1955
- pathPattern?: string | undefined;
1956
- } | {
1957
- match: import("../types/rule.js").MatcherType.ObjectValue;
1958
- pathPattern?: string | undefined;
1959
- })[]])[] | undefined;
1960
- attributes?: (string | [string, ({
1961
- match: import("../types/rule.js").MatcherType.String;
1962
- } | {
1963
- match: import("../types/rule.js").MatcherType.ObjectKey;
1964
- pathPattern?: string | undefined;
1965
- } | {
1966
- match: import("../types/rule.js").MatcherType.ObjectValue;
1967
- pathPattern?: string | undefined;
1968
- })[]])[] | undefined;
1969
- callees?: (string | [string, ({
1970
- match: import("../types/rule.js").MatcherType.String;
1971
- } | {
1972
- match: import("../types/rule.js").MatcherType.ObjectKey;
1973
- pathPattern?: string | undefined;
1974
- } | {
1975
- match: import("../types/rule.js").MatcherType.ObjectValue;
1976
- pathPattern?: string | undefined;
1977
- })[]])[] | undefined;
1978
- selectors: ({
1979
- callTarget?: number | "all" | "first" | "last" | undefined;
1980
- kind: import("../types/rule.js").SelectorKind.Callee;
1981
- match?: ({
1982
- type: import("../types/rule.js").MatcherType.String;
1983
- } | {
1984
- path?: string | undefined;
1985
- type: import("../types/rule.js").MatcherType.ObjectKey;
1986
- } | {
1987
- path?: string | undefined;
1988
- type: import("../types/rule.js").MatcherType.ObjectValue;
1989
- } | {
1990
- match: ({
1991
- type: import("../types/rule.js").MatcherType.String;
1992
- } | {
1993
- path?: string | undefined;
1994
- type: import("../types/rule.js").MatcherType.ObjectKey;
1995
- } | {
1996
- path?: string | undefined;
1997
- type: import("../types/rule.js").MatcherType.ObjectValue;
1998
- })[];
1999
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2000
- })[] | undefined;
2001
- name: string;
2002
- path?: string | undefined;
2003
- targetArgument?: number | "all" | "first" | "last" | undefined;
2004
- targetCall?: number | "all" | "first" | "last" | undefined;
2005
- } | {
2006
- callTarget?: number | "all" | "first" | "last" | undefined;
2007
- kind: import("../types/rule.js").SelectorKind.Callee;
2008
- match?: ({
2009
- type: import("../types/rule.js").MatcherType.String;
2010
- } | {
2011
- path?: string | undefined;
2012
- type: import("../types/rule.js").MatcherType.ObjectKey;
2013
- } | {
2014
- path?: string | undefined;
2015
- type: import("../types/rule.js").MatcherType.ObjectValue;
2016
- } | {
2017
- match: ({
2018
- type: import("../types/rule.js").MatcherType.String;
2019
- } | {
2020
- path?: string | undefined;
2021
- type: import("../types/rule.js").MatcherType.ObjectKey;
2022
- } | {
2023
- path?: string | undefined;
2024
- type: import("../types/rule.js").MatcherType.ObjectValue;
2025
- })[];
2026
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2027
- })[] | undefined;
2028
- name?: string | undefined;
2029
- path: string;
2030
- targetArgument?: number | "all" | "first" | "last" | undefined;
2031
- targetCall?: number | "all" | "first" | "last" | undefined;
2032
- } | {
2033
- kind: import("../types/rule.js").SelectorKind.Tag;
2034
- match?: ({
2035
- type: import("../types/rule.js").MatcherType.String;
2036
- } | {
2037
- path?: string | undefined;
2038
- type: import("../types/rule.js").MatcherType.ObjectKey;
2039
- } | {
2040
- path?: string | undefined;
2041
- type: import("../types/rule.js").MatcherType.ObjectValue;
2042
- } | {
2043
- match: ({
2044
- type: import("../types/rule.js").MatcherType.String;
2045
- } | {
2046
- path?: string | undefined;
2047
- type: import("../types/rule.js").MatcherType.ObjectKey;
2048
- } | {
2049
- path?: string | undefined;
2050
- type: import("../types/rule.js").MatcherType.ObjectValue;
2051
- })[];
2052
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2053
- })[] | undefined;
2054
- name: string;
2055
- path?: string | undefined;
2056
- } | {
2057
- kind: import("../types/rule.js").SelectorKind.Tag;
2058
- match?: ({
2059
- type: import("../types/rule.js").MatcherType.String;
2060
- } | {
2061
- path?: string | undefined;
2062
- type: import("../types/rule.js").MatcherType.ObjectKey;
2063
- } | {
2064
- path?: string | undefined;
2065
- type: import("../types/rule.js").MatcherType.ObjectValue;
2066
- } | {
2067
- match: ({
2068
- type: import("../types/rule.js").MatcherType.String;
2069
- } | {
2070
- path?: string | undefined;
2071
- type: import("../types/rule.js").MatcherType.ObjectKey;
2072
- } | {
2073
- path?: string | undefined;
2074
- type: import("../types/rule.js").MatcherType.ObjectValue;
2075
- })[];
2076
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2077
- })[] | undefined;
2078
- name?: string | undefined;
2079
- path: string;
2080
- } | {
2081
- kind: import("../types/rule.js").SelectorKind.Attribute;
2082
- match?: ({
2083
- type: import("../types/rule.js").MatcherType.String;
2084
- } | {
2085
- path?: string | undefined;
2086
- type: import("../types/rule.js").MatcherType.ObjectKey;
2087
- } | {
2088
- path?: string | undefined;
2089
- type: import("../types/rule.js").MatcherType.ObjectValue;
2090
- } | {
2091
- match: ({
2092
- type: import("../types/rule.js").MatcherType.String;
2093
- } | {
2094
- path?: string | undefined;
2095
- type: import("../types/rule.js").MatcherType.ObjectKey;
2096
- } | {
2097
- path?: string | undefined;
2098
- type: import("../types/rule.js").MatcherType.ObjectValue;
2099
- })[];
2100
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2101
- })[] | undefined;
2102
- name: string;
2103
- } | {
2104
- kind: import("../types/rule.js").SelectorKind.Variable;
2105
- match?: ({
2106
- type: import("../types/rule.js").MatcherType.String;
2107
- } | {
2108
- path?: string | undefined;
2109
- type: import("../types/rule.js").MatcherType.ObjectKey;
2110
- } | {
2111
- path?: string | undefined;
2112
- type: import("../types/rule.js").MatcherType.ObjectValue;
2113
- } | {
2114
- match: ({
2115
- type: import("../types/rule.js").MatcherType.String;
2116
- } | {
2117
- path?: string | undefined;
2118
- type: import("../types/rule.js").MatcherType.ObjectKey;
2119
- } | {
2120
- path?: string | undefined;
2121
- type: import("../types/rule.js").MatcherType.ObjectValue;
2122
- })[];
2123
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2124
- })[] | undefined;
2125
- name: string;
2126
- })[];
2127
- } & {
2128
- syntax: "variable" | "shorthand";
2129
- }>];
2130
- Node: import("eslint").JSSyntaxElement;
2131
- MessageIds: "incorrect";
2132
- }>) => import("eslint").Rule.RuleListener;
1115
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
2133
1116
  meta: {
2134
1117
  messages?: {
2135
1118
  readonly incorrect: "Incorrect variable syntax: {{ className }}.";
@@ -2142,7 +1125,7 @@ declare const rules: readonly [{
2142
1125
  fixable: "code" | undefined;
2143
1126
  schema: {
2144
1127
  additionalProperties: false;
2145
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
1128
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
2146
1129
  type: "object";
2147
1130
  }[];
2148
1131
  type: "problem" | "layout";
@@ -2353,208 +1336,7 @@ declare const rules: readonly [{
2353
1336
  };
2354
1337
  recommended: false;
2355
1338
  rule: {
2356
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
2357
- LangOptions: Linter.LanguageOptions;
2358
- Code: import("eslint").SourceCode;
2359
- RuleOptions: [Required<{
2360
- cwd?: string | undefined;
2361
- rootFontSize?: number | undefined;
2362
- detectComponentClasses: boolean;
2363
- tsconfig?: string | undefined;
2364
- tailwindConfig?: string | undefined;
2365
- messageStyle: "visual" | "compact" | "raw";
2366
- entryPoint?: string | undefined;
2367
- tags?: (string | [string, ({
2368
- match: import("../types/rule.js").MatcherType.String;
2369
- } | {
2370
- match: import("../types/rule.js").MatcherType.ObjectKey;
2371
- pathPattern?: string | undefined;
2372
- } | {
2373
- match: import("../types/rule.js").MatcherType.ObjectValue;
2374
- pathPattern?: string | undefined;
2375
- })[]])[] | undefined;
2376
- variables?: (string | [string, ({
2377
- match: import("../types/rule.js").MatcherType.String;
2378
- } | {
2379
- match: import("../types/rule.js").MatcherType.ObjectKey;
2380
- pathPattern?: string | undefined;
2381
- } | {
2382
- match: import("../types/rule.js").MatcherType.ObjectValue;
2383
- pathPattern?: string | undefined;
2384
- })[]])[] | undefined;
2385
- attributes?: (string | [string, ({
2386
- match: import("../types/rule.js").MatcherType.String;
2387
- } | {
2388
- match: import("../types/rule.js").MatcherType.ObjectKey;
2389
- pathPattern?: string | undefined;
2390
- } | {
2391
- match: import("../types/rule.js").MatcherType.ObjectValue;
2392
- pathPattern?: string | undefined;
2393
- })[]])[] | undefined;
2394
- callees?: (string | [string, ({
2395
- match: import("../types/rule.js").MatcherType.String;
2396
- } | {
2397
- match: import("../types/rule.js").MatcherType.ObjectKey;
2398
- pathPattern?: string | undefined;
2399
- } | {
2400
- match: import("../types/rule.js").MatcherType.ObjectValue;
2401
- pathPattern?: string | undefined;
2402
- })[]])[] | undefined;
2403
- selectors: ({
2404
- callTarget?: number | "all" | "first" | "last" | undefined;
2405
- kind: import("../types/rule.js").SelectorKind.Callee;
2406
- match?: ({
2407
- type: import("../types/rule.js").MatcherType.String;
2408
- } | {
2409
- path?: string | undefined;
2410
- type: import("../types/rule.js").MatcherType.ObjectKey;
2411
- } | {
2412
- path?: string | undefined;
2413
- type: import("../types/rule.js").MatcherType.ObjectValue;
2414
- } | {
2415
- match: ({
2416
- type: import("../types/rule.js").MatcherType.String;
2417
- } | {
2418
- path?: string | undefined;
2419
- type: import("../types/rule.js").MatcherType.ObjectKey;
2420
- } | {
2421
- path?: string | undefined;
2422
- type: import("../types/rule.js").MatcherType.ObjectValue;
2423
- })[];
2424
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2425
- })[] | undefined;
2426
- name: string;
2427
- path?: string | undefined;
2428
- targetArgument?: number | "all" | "first" | "last" | undefined;
2429
- targetCall?: number | "all" | "first" | "last" | undefined;
2430
- } | {
2431
- callTarget?: number | "all" | "first" | "last" | undefined;
2432
- kind: import("../types/rule.js").SelectorKind.Callee;
2433
- match?: ({
2434
- type: import("../types/rule.js").MatcherType.String;
2435
- } | {
2436
- path?: string | undefined;
2437
- type: import("../types/rule.js").MatcherType.ObjectKey;
2438
- } | {
2439
- path?: string | undefined;
2440
- type: import("../types/rule.js").MatcherType.ObjectValue;
2441
- } | {
2442
- match: ({
2443
- type: import("../types/rule.js").MatcherType.String;
2444
- } | {
2445
- path?: string | undefined;
2446
- type: import("../types/rule.js").MatcherType.ObjectKey;
2447
- } | {
2448
- path?: string | undefined;
2449
- type: import("../types/rule.js").MatcherType.ObjectValue;
2450
- })[];
2451
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2452
- })[] | undefined;
2453
- name?: string | undefined;
2454
- path: string;
2455
- targetArgument?: number | "all" | "first" | "last" | undefined;
2456
- targetCall?: number | "all" | "first" | "last" | undefined;
2457
- } | {
2458
- kind: import("../types/rule.js").SelectorKind.Tag;
2459
- match?: ({
2460
- type: import("../types/rule.js").MatcherType.String;
2461
- } | {
2462
- path?: string | undefined;
2463
- type: import("../types/rule.js").MatcherType.ObjectKey;
2464
- } | {
2465
- path?: string | undefined;
2466
- type: import("../types/rule.js").MatcherType.ObjectValue;
2467
- } | {
2468
- match: ({
2469
- type: import("../types/rule.js").MatcherType.String;
2470
- } | {
2471
- path?: string | undefined;
2472
- type: import("../types/rule.js").MatcherType.ObjectKey;
2473
- } | {
2474
- path?: string | undefined;
2475
- type: import("../types/rule.js").MatcherType.ObjectValue;
2476
- })[];
2477
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2478
- })[] | undefined;
2479
- name: string;
2480
- path?: string | undefined;
2481
- } | {
2482
- kind: import("../types/rule.js").SelectorKind.Tag;
2483
- match?: ({
2484
- type: import("../types/rule.js").MatcherType.String;
2485
- } | {
2486
- path?: string | undefined;
2487
- type: import("../types/rule.js").MatcherType.ObjectKey;
2488
- } | {
2489
- path?: string | undefined;
2490
- type: import("../types/rule.js").MatcherType.ObjectValue;
2491
- } | {
2492
- match: ({
2493
- type: import("../types/rule.js").MatcherType.String;
2494
- } | {
2495
- path?: string | undefined;
2496
- type: import("../types/rule.js").MatcherType.ObjectKey;
2497
- } | {
2498
- path?: string | undefined;
2499
- type: import("../types/rule.js").MatcherType.ObjectValue;
2500
- })[];
2501
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2502
- })[] | undefined;
2503
- name?: string | undefined;
2504
- path: string;
2505
- } | {
2506
- kind: import("../types/rule.js").SelectorKind.Attribute;
2507
- match?: ({
2508
- type: import("../types/rule.js").MatcherType.String;
2509
- } | {
2510
- path?: string | undefined;
2511
- type: import("../types/rule.js").MatcherType.ObjectKey;
2512
- } | {
2513
- path?: string | undefined;
2514
- type: import("../types/rule.js").MatcherType.ObjectValue;
2515
- } | {
2516
- match: ({
2517
- type: import("../types/rule.js").MatcherType.String;
2518
- } | {
2519
- path?: string | undefined;
2520
- type: import("../types/rule.js").MatcherType.ObjectKey;
2521
- } | {
2522
- path?: string | undefined;
2523
- type: import("../types/rule.js").MatcherType.ObjectValue;
2524
- })[];
2525
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2526
- })[] | undefined;
2527
- name: string;
2528
- } | {
2529
- kind: import("../types/rule.js").SelectorKind.Variable;
2530
- match?: ({
2531
- type: import("../types/rule.js").MatcherType.String;
2532
- } | {
2533
- path?: string | undefined;
2534
- type: import("../types/rule.js").MatcherType.ObjectKey;
2535
- } | {
2536
- path?: string | undefined;
2537
- type: import("../types/rule.js").MatcherType.ObjectValue;
2538
- } | {
2539
- match: ({
2540
- type: import("../types/rule.js").MatcherType.String;
2541
- } | {
2542
- path?: string | undefined;
2543
- type: import("../types/rule.js").MatcherType.ObjectKey;
2544
- } | {
2545
- path?: string | undefined;
2546
- type: import("../types/rule.js").MatcherType.ObjectValue;
2547
- })[];
2548
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2549
- })[] | undefined;
2550
- name: string;
2551
- })[];
2552
- } & {
2553
- ignore: string[];
2554
- }>];
2555
- Node: import("eslint").JSSyntaxElement;
2556
- MessageIds: "multiple" | "single";
2557
- }>) => import("eslint").Rule.RuleListener;
1339
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
2558
1340
  meta: {
2559
1341
  messages?: {
2560
1342
  readonly multiple: "Physical class detected. Replace \"{{ className }}\" with logical classes \"{{fix}}\".";
@@ -2568,7 +1350,7 @@ declare const rules: readonly [{
2568
1350
  fixable: "code" | undefined;
2569
1351
  schema: {
2570
1352
  additionalProperties: false;
2571
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
1353
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
2572
1354
  type: "object";
2573
1355
  }[];
2574
1356
  type: "problem" | "layout";
@@ -2779,208 +1561,7 @@ declare const rules: readonly [{
2779
1561
  };
2780
1562
  recommended: false;
2781
1563
  rule: {
2782
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
2783
- LangOptions: Linter.LanguageOptions;
2784
- Code: import("eslint").SourceCode;
2785
- RuleOptions: [Required<{
2786
- cwd?: string | undefined;
2787
- rootFontSize?: number | undefined;
2788
- detectComponentClasses: boolean;
2789
- tsconfig?: string | undefined;
2790
- tailwindConfig?: string | undefined;
2791
- messageStyle: "visual" | "compact" | "raw";
2792
- entryPoint?: string | undefined;
2793
- tags?: (string | [string, ({
2794
- match: import("../types/rule.js").MatcherType.String;
2795
- } | {
2796
- match: import("../types/rule.js").MatcherType.ObjectKey;
2797
- pathPattern?: string | undefined;
2798
- } | {
2799
- match: import("../types/rule.js").MatcherType.ObjectValue;
2800
- pathPattern?: string | undefined;
2801
- })[]])[] | undefined;
2802
- variables?: (string | [string, ({
2803
- match: import("../types/rule.js").MatcherType.String;
2804
- } | {
2805
- match: import("../types/rule.js").MatcherType.ObjectKey;
2806
- pathPattern?: string | undefined;
2807
- } | {
2808
- match: import("../types/rule.js").MatcherType.ObjectValue;
2809
- pathPattern?: string | undefined;
2810
- })[]])[] | undefined;
2811
- attributes?: (string | [string, ({
2812
- match: import("../types/rule.js").MatcherType.String;
2813
- } | {
2814
- match: import("../types/rule.js").MatcherType.ObjectKey;
2815
- pathPattern?: string | undefined;
2816
- } | {
2817
- match: import("../types/rule.js").MatcherType.ObjectValue;
2818
- pathPattern?: string | undefined;
2819
- })[]])[] | undefined;
2820
- callees?: (string | [string, ({
2821
- match: import("../types/rule.js").MatcherType.String;
2822
- } | {
2823
- match: import("../types/rule.js").MatcherType.ObjectKey;
2824
- pathPattern?: string | undefined;
2825
- } | {
2826
- match: import("../types/rule.js").MatcherType.ObjectValue;
2827
- pathPattern?: string | undefined;
2828
- })[]])[] | undefined;
2829
- selectors: ({
2830
- callTarget?: number | "all" | "first" | "last" | undefined;
2831
- kind: import("../types/rule.js").SelectorKind.Callee;
2832
- match?: ({
2833
- type: import("../types/rule.js").MatcherType.String;
2834
- } | {
2835
- path?: string | undefined;
2836
- type: import("../types/rule.js").MatcherType.ObjectKey;
2837
- } | {
2838
- path?: string | undefined;
2839
- type: import("../types/rule.js").MatcherType.ObjectValue;
2840
- } | {
2841
- match: ({
2842
- type: import("../types/rule.js").MatcherType.String;
2843
- } | {
2844
- path?: string | undefined;
2845
- type: import("../types/rule.js").MatcherType.ObjectKey;
2846
- } | {
2847
- path?: string | undefined;
2848
- type: import("../types/rule.js").MatcherType.ObjectValue;
2849
- })[];
2850
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2851
- })[] | undefined;
2852
- name: string;
2853
- path?: string | undefined;
2854
- targetArgument?: number | "all" | "first" | "last" | undefined;
2855
- targetCall?: number | "all" | "first" | "last" | undefined;
2856
- } | {
2857
- callTarget?: number | "all" | "first" | "last" | undefined;
2858
- kind: import("../types/rule.js").SelectorKind.Callee;
2859
- match?: ({
2860
- type: import("../types/rule.js").MatcherType.String;
2861
- } | {
2862
- path?: string | undefined;
2863
- type: import("../types/rule.js").MatcherType.ObjectKey;
2864
- } | {
2865
- path?: string | undefined;
2866
- type: import("../types/rule.js").MatcherType.ObjectValue;
2867
- } | {
2868
- match: ({
2869
- type: import("../types/rule.js").MatcherType.String;
2870
- } | {
2871
- path?: string | undefined;
2872
- type: import("../types/rule.js").MatcherType.ObjectKey;
2873
- } | {
2874
- path?: string | undefined;
2875
- type: import("../types/rule.js").MatcherType.ObjectValue;
2876
- })[];
2877
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2878
- })[] | undefined;
2879
- name?: string | undefined;
2880
- path: string;
2881
- targetArgument?: number | "all" | "first" | "last" | undefined;
2882
- targetCall?: number | "all" | "first" | "last" | undefined;
2883
- } | {
2884
- kind: import("../types/rule.js").SelectorKind.Tag;
2885
- match?: ({
2886
- type: import("../types/rule.js").MatcherType.String;
2887
- } | {
2888
- path?: string | undefined;
2889
- type: import("../types/rule.js").MatcherType.ObjectKey;
2890
- } | {
2891
- path?: string | undefined;
2892
- type: import("../types/rule.js").MatcherType.ObjectValue;
2893
- } | {
2894
- match: ({
2895
- type: import("../types/rule.js").MatcherType.String;
2896
- } | {
2897
- path?: string | undefined;
2898
- type: import("../types/rule.js").MatcherType.ObjectKey;
2899
- } | {
2900
- path?: string | undefined;
2901
- type: import("../types/rule.js").MatcherType.ObjectValue;
2902
- })[];
2903
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2904
- })[] | undefined;
2905
- name: string;
2906
- path?: string | undefined;
2907
- } | {
2908
- kind: import("../types/rule.js").SelectorKind.Tag;
2909
- match?: ({
2910
- type: import("../types/rule.js").MatcherType.String;
2911
- } | {
2912
- path?: string | undefined;
2913
- type: import("../types/rule.js").MatcherType.ObjectKey;
2914
- } | {
2915
- path?: string | undefined;
2916
- type: import("../types/rule.js").MatcherType.ObjectValue;
2917
- } | {
2918
- match: ({
2919
- type: import("../types/rule.js").MatcherType.String;
2920
- } | {
2921
- path?: string | undefined;
2922
- type: import("../types/rule.js").MatcherType.ObjectKey;
2923
- } | {
2924
- path?: string | undefined;
2925
- type: import("../types/rule.js").MatcherType.ObjectValue;
2926
- })[];
2927
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2928
- })[] | undefined;
2929
- name?: string | undefined;
2930
- path: string;
2931
- } | {
2932
- kind: import("../types/rule.js").SelectorKind.Attribute;
2933
- match?: ({
2934
- type: import("../types/rule.js").MatcherType.String;
2935
- } | {
2936
- path?: string | undefined;
2937
- type: import("../types/rule.js").MatcherType.ObjectKey;
2938
- } | {
2939
- path?: string | undefined;
2940
- type: import("../types/rule.js").MatcherType.ObjectValue;
2941
- } | {
2942
- match: ({
2943
- type: import("../types/rule.js").MatcherType.String;
2944
- } | {
2945
- path?: string | undefined;
2946
- type: import("../types/rule.js").MatcherType.ObjectKey;
2947
- } | {
2948
- path?: string | undefined;
2949
- type: import("../types/rule.js").MatcherType.ObjectValue;
2950
- })[];
2951
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2952
- })[] | undefined;
2953
- name: string;
2954
- } | {
2955
- kind: import("../types/rule.js").SelectorKind.Variable;
2956
- match?: ({
2957
- type: import("../types/rule.js").MatcherType.String;
2958
- } | {
2959
- path?: string | undefined;
2960
- type: import("../types/rule.js").MatcherType.ObjectKey;
2961
- } | {
2962
- path?: string | undefined;
2963
- type: import("../types/rule.js").MatcherType.ObjectValue;
2964
- } | {
2965
- match: ({
2966
- type: import("../types/rule.js").MatcherType.String;
2967
- } | {
2968
- path?: string | undefined;
2969
- type: import("../types/rule.js").MatcherType.ObjectKey;
2970
- } | {
2971
- path?: string | undefined;
2972
- type: import("../types/rule.js").MatcherType.ObjectValue;
2973
- })[];
2974
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
2975
- })[] | undefined;
2976
- name: string;
2977
- })[];
2978
- } & {
2979
- [x: string]: unknown;
2980
- }>];
2981
- Node: import("eslint").JSSyntaxElement;
2982
- MessageIds: "unnecessary" | "longhand";
2983
- }>) => import("eslint").Rule.RuleListener;
1564
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
2984
1565
  meta: {
2985
1566
  messages?: {
2986
1567
  readonly longhand: "Non shorthand class detected. Expected {{ longhands }} to be {{ shorthands }}";
@@ -2994,7 +1575,7 @@ declare const rules: readonly [{
2994
1575
  fixable: "code" | undefined;
2995
1576
  schema: {
2996
1577
  additionalProperties: false;
2997
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
1578
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
2998
1579
  type: "object";
2999
1580
  }[];
3000
1581
  type: "problem" | "layout";
@@ -3204,208 +1785,7 @@ declare const rules: readonly [{
3204
1785
  };
3205
1786
  recommended: true;
3206
1787
  rule: {
3207
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
3208
- LangOptions: Linter.LanguageOptions;
3209
- Code: import("eslint").SourceCode;
3210
- RuleOptions: [Required<{
3211
- cwd?: string | undefined;
3212
- rootFontSize?: number | undefined;
3213
- detectComponentClasses: boolean;
3214
- tsconfig?: string | undefined;
3215
- tailwindConfig?: string | undefined;
3216
- messageStyle: "visual" | "compact" | "raw";
3217
- entryPoint?: string | undefined;
3218
- tags?: (string | [string, ({
3219
- match: import("../types/rule.js").MatcherType.String;
3220
- } | {
3221
- match: import("../types/rule.js").MatcherType.ObjectKey;
3222
- pathPattern?: string | undefined;
3223
- } | {
3224
- match: import("../types/rule.js").MatcherType.ObjectValue;
3225
- pathPattern?: string | undefined;
3226
- })[]])[] | undefined;
3227
- variables?: (string | [string, ({
3228
- match: import("../types/rule.js").MatcherType.String;
3229
- } | {
3230
- match: import("../types/rule.js").MatcherType.ObjectKey;
3231
- pathPattern?: string | undefined;
3232
- } | {
3233
- match: import("../types/rule.js").MatcherType.ObjectValue;
3234
- pathPattern?: string | undefined;
3235
- })[]])[] | undefined;
3236
- attributes?: (string | [string, ({
3237
- match: import("../types/rule.js").MatcherType.String;
3238
- } | {
3239
- match: import("../types/rule.js").MatcherType.ObjectKey;
3240
- pathPattern?: string | undefined;
3241
- } | {
3242
- match: import("../types/rule.js").MatcherType.ObjectValue;
3243
- pathPattern?: string | undefined;
3244
- })[]])[] | undefined;
3245
- callees?: (string | [string, ({
3246
- match: import("../types/rule.js").MatcherType.String;
3247
- } | {
3248
- match: import("../types/rule.js").MatcherType.ObjectKey;
3249
- pathPattern?: string | undefined;
3250
- } | {
3251
- match: import("../types/rule.js").MatcherType.ObjectValue;
3252
- pathPattern?: string | undefined;
3253
- })[]])[] | undefined;
3254
- selectors: ({
3255
- callTarget?: number | "all" | "first" | "last" | undefined;
3256
- kind: import("../types/rule.js").SelectorKind.Callee;
3257
- match?: ({
3258
- type: import("../types/rule.js").MatcherType.String;
3259
- } | {
3260
- path?: string | undefined;
3261
- type: import("../types/rule.js").MatcherType.ObjectKey;
3262
- } | {
3263
- path?: string | undefined;
3264
- type: import("../types/rule.js").MatcherType.ObjectValue;
3265
- } | {
3266
- match: ({
3267
- type: import("../types/rule.js").MatcherType.String;
3268
- } | {
3269
- path?: string | undefined;
3270
- type: import("../types/rule.js").MatcherType.ObjectKey;
3271
- } | {
3272
- path?: string | undefined;
3273
- type: import("../types/rule.js").MatcherType.ObjectValue;
3274
- })[];
3275
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3276
- })[] | undefined;
3277
- name: string;
3278
- path?: string | undefined;
3279
- targetArgument?: number | "all" | "first" | "last" | undefined;
3280
- targetCall?: number | "all" | "first" | "last" | undefined;
3281
- } | {
3282
- callTarget?: number | "all" | "first" | "last" | undefined;
3283
- kind: import("../types/rule.js").SelectorKind.Callee;
3284
- match?: ({
3285
- type: import("../types/rule.js").MatcherType.String;
3286
- } | {
3287
- path?: string | undefined;
3288
- type: import("../types/rule.js").MatcherType.ObjectKey;
3289
- } | {
3290
- path?: string | undefined;
3291
- type: import("../types/rule.js").MatcherType.ObjectValue;
3292
- } | {
3293
- match: ({
3294
- type: import("../types/rule.js").MatcherType.String;
3295
- } | {
3296
- path?: string | undefined;
3297
- type: import("../types/rule.js").MatcherType.ObjectKey;
3298
- } | {
3299
- path?: string | undefined;
3300
- type: import("../types/rule.js").MatcherType.ObjectValue;
3301
- })[];
3302
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3303
- })[] | undefined;
3304
- name?: string | undefined;
3305
- path: string;
3306
- targetArgument?: number | "all" | "first" | "last" | undefined;
3307
- targetCall?: number | "all" | "first" | "last" | undefined;
3308
- } | {
3309
- kind: import("../types/rule.js").SelectorKind.Tag;
3310
- match?: ({
3311
- type: import("../types/rule.js").MatcherType.String;
3312
- } | {
3313
- path?: string | undefined;
3314
- type: import("../types/rule.js").MatcherType.ObjectKey;
3315
- } | {
3316
- path?: string | undefined;
3317
- type: import("../types/rule.js").MatcherType.ObjectValue;
3318
- } | {
3319
- match: ({
3320
- type: import("../types/rule.js").MatcherType.String;
3321
- } | {
3322
- path?: string | undefined;
3323
- type: import("../types/rule.js").MatcherType.ObjectKey;
3324
- } | {
3325
- path?: string | undefined;
3326
- type: import("../types/rule.js").MatcherType.ObjectValue;
3327
- })[];
3328
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3329
- })[] | undefined;
3330
- name: string;
3331
- path?: string | undefined;
3332
- } | {
3333
- kind: import("../types/rule.js").SelectorKind.Tag;
3334
- match?: ({
3335
- type: import("../types/rule.js").MatcherType.String;
3336
- } | {
3337
- path?: string | undefined;
3338
- type: import("../types/rule.js").MatcherType.ObjectKey;
3339
- } | {
3340
- path?: string | undefined;
3341
- type: import("../types/rule.js").MatcherType.ObjectValue;
3342
- } | {
3343
- match: ({
3344
- type: import("../types/rule.js").MatcherType.String;
3345
- } | {
3346
- path?: string | undefined;
3347
- type: import("../types/rule.js").MatcherType.ObjectKey;
3348
- } | {
3349
- path?: string | undefined;
3350
- type: import("../types/rule.js").MatcherType.ObjectValue;
3351
- })[];
3352
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3353
- })[] | undefined;
3354
- name?: string | undefined;
3355
- path: string;
3356
- } | {
3357
- kind: import("../types/rule.js").SelectorKind.Attribute;
3358
- match?: ({
3359
- type: import("../types/rule.js").MatcherType.String;
3360
- } | {
3361
- path?: string | undefined;
3362
- type: import("../types/rule.js").MatcherType.ObjectKey;
3363
- } | {
3364
- path?: string | undefined;
3365
- type: import("../types/rule.js").MatcherType.ObjectValue;
3366
- } | {
3367
- match: ({
3368
- type: import("../types/rule.js").MatcherType.String;
3369
- } | {
3370
- path?: string | undefined;
3371
- type: import("../types/rule.js").MatcherType.ObjectKey;
3372
- } | {
3373
- path?: string | undefined;
3374
- type: import("../types/rule.js").MatcherType.ObjectValue;
3375
- })[];
3376
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3377
- })[] | undefined;
3378
- name: string;
3379
- } | {
3380
- kind: import("../types/rule.js").SelectorKind.Variable;
3381
- match?: ({
3382
- type: import("../types/rule.js").MatcherType.String;
3383
- } | {
3384
- path?: string | undefined;
3385
- type: import("../types/rule.js").MatcherType.ObjectKey;
3386
- } | {
3387
- path?: string | undefined;
3388
- type: import("../types/rule.js").MatcherType.ObjectValue;
3389
- } | {
3390
- match: ({
3391
- type: import("../types/rule.js").MatcherType.String;
3392
- } | {
3393
- path?: string | undefined;
3394
- type: import("../types/rule.js").MatcherType.ObjectKey;
3395
- } | {
3396
- path?: string | undefined;
3397
- type: import("../types/rule.js").MatcherType.ObjectValue;
3398
- })[];
3399
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3400
- })[] | undefined;
3401
- name: string;
3402
- })[];
3403
- } & {
3404
- [x: string]: unknown;
3405
- }>];
3406
- Node: import("eslint").JSSyntaxElement;
3407
- MessageIds: "conflicting";
3408
- }>) => import("eslint").Rule.RuleListener;
1788
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
3409
1789
  meta: {
3410
1790
  messages?: {
3411
1791
  readonly conflicting: "Conflicting class detected: \"{{ className }}\" and \"{{ conflictingClassString }}\" apply the same CSS properties: \"{{ conflictingPropertiesString }}\".";
@@ -3418,7 +1798,7 @@ declare const rules: readonly [{
3418
1798
  fixable: "code" | undefined;
3419
1799
  schema: {
3420
1800
  additionalProperties: false;
3421
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
1801
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
3422
1802
  type: "object";
3423
1803
  }[];
3424
1804
  type: "problem" | "layout";
@@ -3629,208 +2009,7 @@ declare const rules: readonly [{
3629
2009
  };
3630
2010
  recommended: true;
3631
2011
  rule: {
3632
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
3633
- LangOptions: Linter.LanguageOptions;
3634
- Code: import("eslint").SourceCode;
3635
- RuleOptions: [Required<{
3636
- cwd?: string | undefined;
3637
- rootFontSize?: number | undefined;
3638
- detectComponentClasses: boolean;
3639
- tsconfig?: string | undefined;
3640
- tailwindConfig?: string | undefined;
3641
- messageStyle: "visual" | "compact" | "raw";
3642
- entryPoint?: string | undefined;
3643
- tags?: (string | [string, ({
3644
- match: import("../types/rule.js").MatcherType.String;
3645
- } | {
3646
- match: import("../types/rule.js").MatcherType.ObjectKey;
3647
- pathPattern?: string | undefined;
3648
- } | {
3649
- match: import("../types/rule.js").MatcherType.ObjectValue;
3650
- pathPattern?: string | undefined;
3651
- })[]])[] | undefined;
3652
- variables?: (string | [string, ({
3653
- match: import("../types/rule.js").MatcherType.String;
3654
- } | {
3655
- match: import("../types/rule.js").MatcherType.ObjectKey;
3656
- pathPattern?: string | undefined;
3657
- } | {
3658
- match: import("../types/rule.js").MatcherType.ObjectValue;
3659
- pathPattern?: string | undefined;
3660
- })[]])[] | undefined;
3661
- attributes?: (string | [string, ({
3662
- match: import("../types/rule.js").MatcherType.String;
3663
- } | {
3664
- match: import("../types/rule.js").MatcherType.ObjectKey;
3665
- pathPattern?: string | undefined;
3666
- } | {
3667
- match: import("../types/rule.js").MatcherType.ObjectValue;
3668
- pathPattern?: string | undefined;
3669
- })[]])[] | undefined;
3670
- callees?: (string | [string, ({
3671
- match: import("../types/rule.js").MatcherType.String;
3672
- } | {
3673
- match: import("../types/rule.js").MatcherType.ObjectKey;
3674
- pathPattern?: string | undefined;
3675
- } | {
3676
- match: import("../types/rule.js").MatcherType.ObjectValue;
3677
- pathPattern?: string | undefined;
3678
- })[]])[] | undefined;
3679
- selectors: ({
3680
- callTarget?: number | "all" | "first" | "last" | undefined;
3681
- kind: import("../types/rule.js").SelectorKind.Callee;
3682
- match?: ({
3683
- type: import("../types/rule.js").MatcherType.String;
3684
- } | {
3685
- path?: string | undefined;
3686
- type: import("../types/rule.js").MatcherType.ObjectKey;
3687
- } | {
3688
- path?: string | undefined;
3689
- type: import("../types/rule.js").MatcherType.ObjectValue;
3690
- } | {
3691
- match: ({
3692
- type: import("../types/rule.js").MatcherType.String;
3693
- } | {
3694
- path?: string | undefined;
3695
- type: import("../types/rule.js").MatcherType.ObjectKey;
3696
- } | {
3697
- path?: string | undefined;
3698
- type: import("../types/rule.js").MatcherType.ObjectValue;
3699
- })[];
3700
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3701
- })[] | undefined;
3702
- name: string;
3703
- path?: string | undefined;
3704
- targetArgument?: number | "all" | "first" | "last" | undefined;
3705
- targetCall?: number | "all" | "first" | "last" | undefined;
3706
- } | {
3707
- callTarget?: number | "all" | "first" | "last" | undefined;
3708
- kind: import("../types/rule.js").SelectorKind.Callee;
3709
- match?: ({
3710
- type: import("../types/rule.js").MatcherType.String;
3711
- } | {
3712
- path?: string | undefined;
3713
- type: import("../types/rule.js").MatcherType.ObjectKey;
3714
- } | {
3715
- path?: string | undefined;
3716
- type: import("../types/rule.js").MatcherType.ObjectValue;
3717
- } | {
3718
- match: ({
3719
- type: import("../types/rule.js").MatcherType.String;
3720
- } | {
3721
- path?: string | undefined;
3722
- type: import("../types/rule.js").MatcherType.ObjectKey;
3723
- } | {
3724
- path?: string | undefined;
3725
- type: import("../types/rule.js").MatcherType.ObjectValue;
3726
- })[];
3727
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3728
- })[] | undefined;
3729
- name?: string | undefined;
3730
- path: string;
3731
- targetArgument?: number | "all" | "first" | "last" | undefined;
3732
- targetCall?: number | "all" | "first" | "last" | undefined;
3733
- } | {
3734
- kind: import("../types/rule.js").SelectorKind.Tag;
3735
- match?: ({
3736
- type: import("../types/rule.js").MatcherType.String;
3737
- } | {
3738
- path?: string | undefined;
3739
- type: import("../types/rule.js").MatcherType.ObjectKey;
3740
- } | {
3741
- path?: string | undefined;
3742
- type: import("../types/rule.js").MatcherType.ObjectValue;
3743
- } | {
3744
- match: ({
3745
- type: import("../types/rule.js").MatcherType.String;
3746
- } | {
3747
- path?: string | undefined;
3748
- type: import("../types/rule.js").MatcherType.ObjectKey;
3749
- } | {
3750
- path?: string | undefined;
3751
- type: import("../types/rule.js").MatcherType.ObjectValue;
3752
- })[];
3753
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3754
- })[] | undefined;
3755
- name: string;
3756
- path?: string | undefined;
3757
- } | {
3758
- kind: import("../types/rule.js").SelectorKind.Tag;
3759
- match?: ({
3760
- type: import("../types/rule.js").MatcherType.String;
3761
- } | {
3762
- path?: string | undefined;
3763
- type: import("../types/rule.js").MatcherType.ObjectKey;
3764
- } | {
3765
- path?: string | undefined;
3766
- type: import("../types/rule.js").MatcherType.ObjectValue;
3767
- } | {
3768
- match: ({
3769
- type: import("../types/rule.js").MatcherType.String;
3770
- } | {
3771
- path?: string | undefined;
3772
- type: import("../types/rule.js").MatcherType.ObjectKey;
3773
- } | {
3774
- path?: string | undefined;
3775
- type: import("../types/rule.js").MatcherType.ObjectValue;
3776
- })[];
3777
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3778
- })[] | undefined;
3779
- name?: string | undefined;
3780
- path: string;
3781
- } | {
3782
- kind: import("../types/rule.js").SelectorKind.Attribute;
3783
- match?: ({
3784
- type: import("../types/rule.js").MatcherType.String;
3785
- } | {
3786
- path?: string | undefined;
3787
- type: import("../types/rule.js").MatcherType.ObjectKey;
3788
- } | {
3789
- path?: string | undefined;
3790
- type: import("../types/rule.js").MatcherType.ObjectValue;
3791
- } | {
3792
- match: ({
3793
- type: import("../types/rule.js").MatcherType.String;
3794
- } | {
3795
- path?: string | undefined;
3796
- type: import("../types/rule.js").MatcherType.ObjectKey;
3797
- } | {
3798
- path?: string | undefined;
3799
- type: import("../types/rule.js").MatcherType.ObjectValue;
3800
- })[];
3801
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3802
- })[] | undefined;
3803
- name: string;
3804
- } | {
3805
- kind: import("../types/rule.js").SelectorKind.Variable;
3806
- match?: ({
3807
- type: import("../types/rule.js").MatcherType.String;
3808
- } | {
3809
- path?: string | undefined;
3810
- type: import("../types/rule.js").MatcherType.ObjectKey;
3811
- } | {
3812
- path?: string | undefined;
3813
- type: import("../types/rule.js").MatcherType.ObjectValue;
3814
- } | {
3815
- match: ({
3816
- type: import("../types/rule.js").MatcherType.String;
3817
- } | {
3818
- path?: string | undefined;
3819
- type: import("../types/rule.js").MatcherType.ObjectKey;
3820
- } | {
3821
- path?: string | undefined;
3822
- type: import("../types/rule.js").MatcherType.ObjectValue;
3823
- })[];
3824
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
3825
- })[] | undefined;
3826
- name: string;
3827
- })[];
3828
- } & {
3829
- [x: string]: unknown;
3830
- }>];
3831
- Node: import("eslint").JSSyntaxElement;
3832
- MessageIds: "irreplaceable" | "replaceable";
3833
- }>) => import("eslint").Rule.RuleListener;
2012
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
3834
2013
  meta: {
3835
2014
  messages?: {
3836
2015
  readonly irreplaceable: "Class \"{{ className }}\" is deprecated. Check the tailwindcss documentation for more information: https://tailwindcss.com/docs/upgrade-guide#removed-deprecated-utilities";
@@ -3844,7 +2023,7 @@ declare const rules: readonly [{
3844
2023
  fixable: "code" | undefined;
3845
2024
  schema: {
3846
2025
  additionalProperties: false;
3847
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
2026
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
3848
2027
  type: "object";
3849
2028
  }[];
3850
2029
  type: "problem" | "layout";
@@ -4054,208 +2233,7 @@ declare const rules: readonly [{
4054
2233
  };
4055
2234
  recommended: true;
4056
2235
  rule: {
4057
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
4058
- LangOptions: Linter.LanguageOptions;
4059
- Code: import("eslint").SourceCode;
4060
- RuleOptions: [Required<{
4061
- cwd?: string | undefined;
4062
- rootFontSize?: number | undefined;
4063
- detectComponentClasses: boolean;
4064
- tsconfig?: string | undefined;
4065
- tailwindConfig?: string | undefined;
4066
- messageStyle: "visual" | "compact" | "raw";
4067
- entryPoint?: string | undefined;
4068
- tags?: (string | [string, ({
4069
- match: import("../types/rule.js").MatcherType.String;
4070
- } | {
4071
- match: import("../types/rule.js").MatcherType.ObjectKey;
4072
- pathPattern?: string | undefined;
4073
- } | {
4074
- match: import("../types/rule.js").MatcherType.ObjectValue;
4075
- pathPattern?: string | undefined;
4076
- })[]])[] | undefined;
4077
- variables?: (string | [string, ({
4078
- match: import("../types/rule.js").MatcherType.String;
4079
- } | {
4080
- match: import("../types/rule.js").MatcherType.ObjectKey;
4081
- pathPattern?: string | undefined;
4082
- } | {
4083
- match: import("../types/rule.js").MatcherType.ObjectValue;
4084
- pathPattern?: string | undefined;
4085
- })[]])[] | undefined;
4086
- attributes?: (string | [string, ({
4087
- match: import("../types/rule.js").MatcherType.String;
4088
- } | {
4089
- match: import("../types/rule.js").MatcherType.ObjectKey;
4090
- pathPattern?: string | undefined;
4091
- } | {
4092
- match: import("../types/rule.js").MatcherType.ObjectValue;
4093
- pathPattern?: string | undefined;
4094
- })[]])[] | undefined;
4095
- callees?: (string | [string, ({
4096
- match: import("../types/rule.js").MatcherType.String;
4097
- } | {
4098
- match: import("../types/rule.js").MatcherType.ObjectKey;
4099
- pathPattern?: string | undefined;
4100
- } | {
4101
- match: import("../types/rule.js").MatcherType.ObjectValue;
4102
- pathPattern?: string | undefined;
4103
- })[]])[] | undefined;
4104
- selectors: ({
4105
- callTarget?: number | "all" | "first" | "last" | undefined;
4106
- kind: import("../types/rule.js").SelectorKind.Callee;
4107
- match?: ({
4108
- type: import("../types/rule.js").MatcherType.String;
4109
- } | {
4110
- path?: string | undefined;
4111
- type: import("../types/rule.js").MatcherType.ObjectKey;
4112
- } | {
4113
- path?: string | undefined;
4114
- type: import("../types/rule.js").MatcherType.ObjectValue;
4115
- } | {
4116
- match: ({
4117
- type: import("../types/rule.js").MatcherType.String;
4118
- } | {
4119
- path?: string | undefined;
4120
- type: import("../types/rule.js").MatcherType.ObjectKey;
4121
- } | {
4122
- path?: string | undefined;
4123
- type: import("../types/rule.js").MatcherType.ObjectValue;
4124
- })[];
4125
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4126
- })[] | undefined;
4127
- name: string;
4128
- path?: string | undefined;
4129
- targetArgument?: number | "all" | "first" | "last" | undefined;
4130
- targetCall?: number | "all" | "first" | "last" | undefined;
4131
- } | {
4132
- callTarget?: number | "all" | "first" | "last" | undefined;
4133
- kind: import("../types/rule.js").SelectorKind.Callee;
4134
- match?: ({
4135
- type: import("../types/rule.js").MatcherType.String;
4136
- } | {
4137
- path?: string | undefined;
4138
- type: import("../types/rule.js").MatcherType.ObjectKey;
4139
- } | {
4140
- path?: string | undefined;
4141
- type: import("../types/rule.js").MatcherType.ObjectValue;
4142
- } | {
4143
- match: ({
4144
- type: import("../types/rule.js").MatcherType.String;
4145
- } | {
4146
- path?: string | undefined;
4147
- type: import("../types/rule.js").MatcherType.ObjectKey;
4148
- } | {
4149
- path?: string | undefined;
4150
- type: import("../types/rule.js").MatcherType.ObjectValue;
4151
- })[];
4152
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4153
- })[] | undefined;
4154
- name?: string | undefined;
4155
- path: string;
4156
- targetArgument?: number | "all" | "first" | "last" | undefined;
4157
- targetCall?: number | "all" | "first" | "last" | undefined;
4158
- } | {
4159
- kind: import("../types/rule.js").SelectorKind.Tag;
4160
- match?: ({
4161
- type: import("../types/rule.js").MatcherType.String;
4162
- } | {
4163
- path?: string | undefined;
4164
- type: import("../types/rule.js").MatcherType.ObjectKey;
4165
- } | {
4166
- path?: string | undefined;
4167
- type: import("../types/rule.js").MatcherType.ObjectValue;
4168
- } | {
4169
- match: ({
4170
- type: import("../types/rule.js").MatcherType.String;
4171
- } | {
4172
- path?: string | undefined;
4173
- type: import("../types/rule.js").MatcherType.ObjectKey;
4174
- } | {
4175
- path?: string | undefined;
4176
- type: import("../types/rule.js").MatcherType.ObjectValue;
4177
- })[];
4178
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4179
- })[] | undefined;
4180
- name: string;
4181
- path?: string | undefined;
4182
- } | {
4183
- kind: import("../types/rule.js").SelectorKind.Tag;
4184
- match?: ({
4185
- type: import("../types/rule.js").MatcherType.String;
4186
- } | {
4187
- path?: string | undefined;
4188
- type: import("../types/rule.js").MatcherType.ObjectKey;
4189
- } | {
4190
- path?: string | undefined;
4191
- type: import("../types/rule.js").MatcherType.ObjectValue;
4192
- } | {
4193
- match: ({
4194
- type: import("../types/rule.js").MatcherType.String;
4195
- } | {
4196
- path?: string | undefined;
4197
- type: import("../types/rule.js").MatcherType.ObjectKey;
4198
- } | {
4199
- path?: string | undefined;
4200
- type: import("../types/rule.js").MatcherType.ObjectValue;
4201
- })[];
4202
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4203
- })[] | undefined;
4204
- name?: string | undefined;
4205
- path: string;
4206
- } | {
4207
- kind: import("../types/rule.js").SelectorKind.Attribute;
4208
- match?: ({
4209
- type: import("../types/rule.js").MatcherType.String;
4210
- } | {
4211
- path?: string | undefined;
4212
- type: import("../types/rule.js").MatcherType.ObjectKey;
4213
- } | {
4214
- path?: string | undefined;
4215
- type: import("../types/rule.js").MatcherType.ObjectValue;
4216
- } | {
4217
- match: ({
4218
- type: import("../types/rule.js").MatcherType.String;
4219
- } | {
4220
- path?: string | undefined;
4221
- type: import("../types/rule.js").MatcherType.ObjectKey;
4222
- } | {
4223
- path?: string | undefined;
4224
- type: import("../types/rule.js").MatcherType.ObjectValue;
4225
- })[];
4226
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4227
- })[] | undefined;
4228
- name: string;
4229
- } | {
4230
- kind: import("../types/rule.js").SelectorKind.Variable;
4231
- match?: ({
4232
- type: import("../types/rule.js").MatcherType.String;
4233
- } | {
4234
- path?: string | undefined;
4235
- type: import("../types/rule.js").MatcherType.ObjectKey;
4236
- } | {
4237
- path?: string | undefined;
4238
- type: import("../types/rule.js").MatcherType.ObjectValue;
4239
- } | {
4240
- match: ({
4241
- type: import("../types/rule.js").MatcherType.String;
4242
- } | {
4243
- path?: string | undefined;
4244
- type: import("../types/rule.js").MatcherType.ObjectKey;
4245
- } | {
4246
- path?: string | undefined;
4247
- type: import("../types/rule.js").MatcherType.ObjectValue;
4248
- })[];
4249
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4250
- })[] | undefined;
4251
- name: string;
4252
- })[];
4253
- } & {
4254
- [x: string]: unknown;
4255
- }>];
4256
- Node: import("eslint").JSSyntaxElement;
4257
- MessageIds: "duplicate";
4258
- }>) => import("eslint").Rule.RuleListener;
2236
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
4259
2237
  meta: {
4260
2238
  messages?: {
4261
2239
  readonly duplicate: "Duplicate classname: \"{{ className }}\".";
@@ -4268,7 +2246,7 @@ declare const rules: readonly [{
4268
2246
  fixable: "code" | undefined;
4269
2247
  schema: {
4270
2248
  additionalProperties: false;
4271
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
2249
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
4272
2250
  type: "object";
4273
2251
  }[];
4274
2252
  type: "problem" | "layout";
@@ -4480,212 +2458,7 @@ declare const rules: readonly [{
4480
2458
  };
4481
2459
  recommended: false;
4482
2460
  rule: {
4483
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
4484
- LangOptions: Linter.LanguageOptions;
4485
- Code: import("eslint").SourceCode;
4486
- RuleOptions: [Required<{
4487
- cwd?: string | undefined;
4488
- rootFontSize?: number | undefined;
4489
- detectComponentClasses: boolean;
4490
- tsconfig?: string | undefined;
4491
- tailwindConfig?: string | undefined;
4492
- messageStyle: "visual" | "compact" | "raw";
4493
- entryPoint?: string | undefined;
4494
- tags?: (string | [string, ({
4495
- match: import("../types/rule.js").MatcherType.String;
4496
- } | {
4497
- match: import("../types/rule.js").MatcherType.ObjectKey;
4498
- pathPattern?: string | undefined;
4499
- } | {
4500
- match: import("../types/rule.js").MatcherType.ObjectValue;
4501
- pathPattern?: string | undefined;
4502
- })[]])[] | undefined;
4503
- variables?: (string | [string, ({
4504
- match: import("../types/rule.js").MatcherType.String;
4505
- } | {
4506
- match: import("../types/rule.js").MatcherType.ObjectKey;
4507
- pathPattern?: string | undefined;
4508
- } | {
4509
- match: import("../types/rule.js").MatcherType.ObjectValue;
4510
- pathPattern?: string | undefined;
4511
- })[]])[] | undefined;
4512
- attributes?: (string | [string, ({
4513
- match: import("../types/rule.js").MatcherType.String;
4514
- } | {
4515
- match: import("../types/rule.js").MatcherType.ObjectKey;
4516
- pathPattern?: string | undefined;
4517
- } | {
4518
- match: import("../types/rule.js").MatcherType.ObjectValue;
4519
- pathPattern?: string | undefined;
4520
- })[]])[] | undefined;
4521
- callees?: (string | [string, ({
4522
- match: import("../types/rule.js").MatcherType.String;
4523
- } | {
4524
- match: import("../types/rule.js").MatcherType.ObjectKey;
4525
- pathPattern?: string | undefined;
4526
- } | {
4527
- match: import("../types/rule.js").MatcherType.ObjectValue;
4528
- pathPattern?: string | undefined;
4529
- })[]])[] | undefined;
4530
- selectors: ({
4531
- callTarget?: number | "all" | "first" | "last" | undefined;
4532
- kind: import("../types/rule.js").SelectorKind.Callee;
4533
- match?: ({
4534
- type: import("../types/rule.js").MatcherType.String;
4535
- } | {
4536
- path?: string | undefined;
4537
- type: import("../types/rule.js").MatcherType.ObjectKey;
4538
- } | {
4539
- path?: string | undefined;
4540
- type: import("../types/rule.js").MatcherType.ObjectValue;
4541
- } | {
4542
- match: ({
4543
- type: import("../types/rule.js").MatcherType.String;
4544
- } | {
4545
- path?: string | undefined;
4546
- type: import("../types/rule.js").MatcherType.ObjectKey;
4547
- } | {
4548
- path?: string | undefined;
4549
- type: import("../types/rule.js").MatcherType.ObjectValue;
4550
- })[];
4551
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4552
- })[] | undefined;
4553
- name: string;
4554
- path?: string | undefined;
4555
- targetArgument?: number | "all" | "first" | "last" | undefined;
4556
- targetCall?: number | "all" | "first" | "last" | undefined;
4557
- } | {
4558
- callTarget?: number | "all" | "first" | "last" | undefined;
4559
- kind: import("../types/rule.js").SelectorKind.Callee;
4560
- match?: ({
4561
- type: import("../types/rule.js").MatcherType.String;
4562
- } | {
4563
- path?: string | undefined;
4564
- type: import("../types/rule.js").MatcherType.ObjectKey;
4565
- } | {
4566
- path?: string | undefined;
4567
- type: import("../types/rule.js").MatcherType.ObjectValue;
4568
- } | {
4569
- match: ({
4570
- type: import("../types/rule.js").MatcherType.String;
4571
- } | {
4572
- path?: string | undefined;
4573
- type: import("../types/rule.js").MatcherType.ObjectKey;
4574
- } | {
4575
- path?: string | undefined;
4576
- type: import("../types/rule.js").MatcherType.ObjectValue;
4577
- })[];
4578
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4579
- })[] | undefined;
4580
- name?: string | undefined;
4581
- path: string;
4582
- targetArgument?: number | "all" | "first" | "last" | undefined;
4583
- targetCall?: number | "all" | "first" | "last" | undefined;
4584
- } | {
4585
- kind: import("../types/rule.js").SelectorKind.Tag;
4586
- match?: ({
4587
- type: import("../types/rule.js").MatcherType.String;
4588
- } | {
4589
- path?: string | undefined;
4590
- type: import("../types/rule.js").MatcherType.ObjectKey;
4591
- } | {
4592
- path?: string | undefined;
4593
- type: import("../types/rule.js").MatcherType.ObjectValue;
4594
- } | {
4595
- match: ({
4596
- type: import("../types/rule.js").MatcherType.String;
4597
- } | {
4598
- path?: string | undefined;
4599
- type: import("../types/rule.js").MatcherType.ObjectKey;
4600
- } | {
4601
- path?: string | undefined;
4602
- type: import("../types/rule.js").MatcherType.ObjectValue;
4603
- })[];
4604
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4605
- })[] | undefined;
4606
- name: string;
4607
- path?: string | undefined;
4608
- } | {
4609
- kind: import("../types/rule.js").SelectorKind.Tag;
4610
- match?: ({
4611
- type: import("../types/rule.js").MatcherType.String;
4612
- } | {
4613
- path?: string | undefined;
4614
- type: import("../types/rule.js").MatcherType.ObjectKey;
4615
- } | {
4616
- path?: string | undefined;
4617
- type: import("../types/rule.js").MatcherType.ObjectValue;
4618
- } | {
4619
- match: ({
4620
- type: import("../types/rule.js").MatcherType.String;
4621
- } | {
4622
- path?: string | undefined;
4623
- type: import("../types/rule.js").MatcherType.ObjectKey;
4624
- } | {
4625
- path?: string | undefined;
4626
- type: import("../types/rule.js").MatcherType.ObjectValue;
4627
- })[];
4628
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4629
- })[] | undefined;
4630
- name?: string | undefined;
4631
- path: string;
4632
- } | {
4633
- kind: import("../types/rule.js").SelectorKind.Attribute;
4634
- match?: ({
4635
- type: import("../types/rule.js").MatcherType.String;
4636
- } | {
4637
- path?: string | undefined;
4638
- type: import("../types/rule.js").MatcherType.ObjectKey;
4639
- } | {
4640
- path?: string | undefined;
4641
- type: import("../types/rule.js").MatcherType.ObjectValue;
4642
- } | {
4643
- match: ({
4644
- type: import("../types/rule.js").MatcherType.String;
4645
- } | {
4646
- path?: string | undefined;
4647
- type: import("../types/rule.js").MatcherType.ObjectKey;
4648
- } | {
4649
- path?: string | undefined;
4650
- type: import("../types/rule.js").MatcherType.ObjectValue;
4651
- })[];
4652
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4653
- })[] | undefined;
4654
- name: string;
4655
- } | {
4656
- kind: import("../types/rule.js").SelectorKind.Variable;
4657
- match?: ({
4658
- type: import("../types/rule.js").MatcherType.String;
4659
- } | {
4660
- path?: string | undefined;
4661
- type: import("../types/rule.js").MatcherType.ObjectKey;
4662
- } | {
4663
- path?: string | undefined;
4664
- type: import("../types/rule.js").MatcherType.ObjectValue;
4665
- } | {
4666
- match: ({
4667
- type: import("../types/rule.js").MatcherType.String;
4668
- } | {
4669
- path?: string | undefined;
4670
- type: import("../types/rule.js").MatcherType.ObjectKey;
4671
- } | {
4672
- path?: string | undefined;
4673
- type: import("../types/rule.js").MatcherType.ObjectValue;
4674
- })[];
4675
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4676
- })[] | undefined;
4677
- name: string;
4678
- })[];
4679
- } & {
4680
- restrict: (string | {
4681
- fix?: string | undefined;
4682
- message?: string | undefined;
4683
- pattern: string;
4684
- })[];
4685
- }>];
4686
- Node: import("eslint").JSSyntaxElement;
4687
- MessageIds: string;
4688
- }>) => import("eslint").Rule.RuleListener;
2461
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
4689
2462
  meta: {
4690
2463
  messages?: Record<string, string>;
4691
2464
  docs: {
@@ -4696,7 +2469,7 @@ declare const rules: readonly [{
4696
2469
  fixable: "code" | undefined;
4697
2470
  schema: {
4698
2471
  additionalProperties: false;
4699
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
2472
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
4700
2473
  type: "object";
4701
2474
  }[];
4702
2475
  type: "problem" | "layout";
@@ -4906,208 +2679,7 @@ declare const rules: readonly [{
4906
2679
  };
4907
2680
  recommended: true;
4908
2681
  rule: {
4909
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
4910
- LangOptions: Linter.LanguageOptions;
4911
- Code: import("eslint").SourceCode;
4912
- RuleOptions: [Required<{
4913
- cwd?: string | undefined;
4914
- rootFontSize?: number | undefined;
4915
- detectComponentClasses: boolean;
4916
- tsconfig?: string | undefined;
4917
- tailwindConfig?: string | undefined;
4918
- messageStyle: "visual" | "compact" | "raw";
4919
- entryPoint?: string | undefined;
4920
- tags?: (string | [string, ({
4921
- match: import("../types/rule.js").MatcherType.String;
4922
- } | {
4923
- match: import("../types/rule.js").MatcherType.ObjectKey;
4924
- pathPattern?: string | undefined;
4925
- } | {
4926
- match: import("../types/rule.js").MatcherType.ObjectValue;
4927
- pathPattern?: string | undefined;
4928
- })[]])[] | undefined;
4929
- variables?: (string | [string, ({
4930
- match: import("../types/rule.js").MatcherType.String;
4931
- } | {
4932
- match: import("../types/rule.js").MatcherType.ObjectKey;
4933
- pathPattern?: string | undefined;
4934
- } | {
4935
- match: import("../types/rule.js").MatcherType.ObjectValue;
4936
- pathPattern?: string | undefined;
4937
- })[]])[] | undefined;
4938
- attributes?: (string | [string, ({
4939
- match: import("../types/rule.js").MatcherType.String;
4940
- } | {
4941
- match: import("../types/rule.js").MatcherType.ObjectKey;
4942
- pathPattern?: string | undefined;
4943
- } | {
4944
- match: import("../types/rule.js").MatcherType.ObjectValue;
4945
- pathPattern?: string | undefined;
4946
- })[]])[] | undefined;
4947
- callees?: (string | [string, ({
4948
- match: import("../types/rule.js").MatcherType.String;
4949
- } | {
4950
- match: import("../types/rule.js").MatcherType.ObjectKey;
4951
- pathPattern?: string | undefined;
4952
- } | {
4953
- match: import("../types/rule.js").MatcherType.ObjectValue;
4954
- pathPattern?: string | undefined;
4955
- })[]])[] | undefined;
4956
- selectors: ({
4957
- callTarget?: number | "all" | "first" | "last" | undefined;
4958
- kind: import("../types/rule.js").SelectorKind.Callee;
4959
- match?: ({
4960
- type: import("../types/rule.js").MatcherType.String;
4961
- } | {
4962
- path?: string | undefined;
4963
- type: import("../types/rule.js").MatcherType.ObjectKey;
4964
- } | {
4965
- path?: string | undefined;
4966
- type: import("../types/rule.js").MatcherType.ObjectValue;
4967
- } | {
4968
- match: ({
4969
- type: import("../types/rule.js").MatcherType.String;
4970
- } | {
4971
- path?: string | undefined;
4972
- type: import("../types/rule.js").MatcherType.ObjectKey;
4973
- } | {
4974
- path?: string | undefined;
4975
- type: import("../types/rule.js").MatcherType.ObjectValue;
4976
- })[];
4977
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
4978
- })[] | undefined;
4979
- name: string;
4980
- path?: string | undefined;
4981
- targetArgument?: number | "all" | "first" | "last" | undefined;
4982
- targetCall?: number | "all" | "first" | "last" | undefined;
4983
- } | {
4984
- callTarget?: number | "all" | "first" | "last" | undefined;
4985
- kind: import("../types/rule.js").SelectorKind.Callee;
4986
- match?: ({
4987
- type: import("../types/rule.js").MatcherType.String;
4988
- } | {
4989
- path?: string | undefined;
4990
- type: import("../types/rule.js").MatcherType.ObjectKey;
4991
- } | {
4992
- path?: string | undefined;
4993
- type: import("../types/rule.js").MatcherType.ObjectValue;
4994
- } | {
4995
- match: ({
4996
- type: import("../types/rule.js").MatcherType.String;
4997
- } | {
4998
- path?: string | undefined;
4999
- type: import("../types/rule.js").MatcherType.ObjectKey;
5000
- } | {
5001
- path?: string | undefined;
5002
- type: import("../types/rule.js").MatcherType.ObjectValue;
5003
- })[];
5004
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5005
- })[] | undefined;
5006
- name?: string | undefined;
5007
- path: string;
5008
- targetArgument?: number | "all" | "first" | "last" | undefined;
5009
- targetCall?: number | "all" | "first" | "last" | undefined;
5010
- } | {
5011
- kind: import("../types/rule.js").SelectorKind.Tag;
5012
- match?: ({
5013
- type: import("../types/rule.js").MatcherType.String;
5014
- } | {
5015
- path?: string | undefined;
5016
- type: import("../types/rule.js").MatcherType.ObjectKey;
5017
- } | {
5018
- path?: string | undefined;
5019
- type: import("../types/rule.js").MatcherType.ObjectValue;
5020
- } | {
5021
- match: ({
5022
- type: import("../types/rule.js").MatcherType.String;
5023
- } | {
5024
- path?: string | undefined;
5025
- type: import("../types/rule.js").MatcherType.ObjectKey;
5026
- } | {
5027
- path?: string | undefined;
5028
- type: import("../types/rule.js").MatcherType.ObjectValue;
5029
- })[];
5030
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5031
- })[] | undefined;
5032
- name: string;
5033
- path?: string | undefined;
5034
- } | {
5035
- kind: import("../types/rule.js").SelectorKind.Tag;
5036
- match?: ({
5037
- type: import("../types/rule.js").MatcherType.String;
5038
- } | {
5039
- path?: string | undefined;
5040
- type: import("../types/rule.js").MatcherType.ObjectKey;
5041
- } | {
5042
- path?: string | undefined;
5043
- type: import("../types/rule.js").MatcherType.ObjectValue;
5044
- } | {
5045
- match: ({
5046
- type: import("../types/rule.js").MatcherType.String;
5047
- } | {
5048
- path?: string | undefined;
5049
- type: import("../types/rule.js").MatcherType.ObjectKey;
5050
- } | {
5051
- path?: string | undefined;
5052
- type: import("../types/rule.js").MatcherType.ObjectValue;
5053
- })[];
5054
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5055
- })[] | undefined;
5056
- name?: string | undefined;
5057
- path: string;
5058
- } | {
5059
- kind: import("../types/rule.js").SelectorKind.Attribute;
5060
- match?: ({
5061
- type: import("../types/rule.js").MatcherType.String;
5062
- } | {
5063
- path?: string | undefined;
5064
- type: import("../types/rule.js").MatcherType.ObjectKey;
5065
- } | {
5066
- path?: string | undefined;
5067
- type: import("../types/rule.js").MatcherType.ObjectValue;
5068
- } | {
5069
- match: ({
5070
- type: import("../types/rule.js").MatcherType.String;
5071
- } | {
5072
- path?: string | undefined;
5073
- type: import("../types/rule.js").MatcherType.ObjectKey;
5074
- } | {
5075
- path?: string | undefined;
5076
- type: import("../types/rule.js").MatcherType.ObjectValue;
5077
- })[];
5078
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5079
- })[] | undefined;
5080
- name: string;
5081
- } | {
5082
- kind: import("../types/rule.js").SelectorKind.Variable;
5083
- match?: ({
5084
- type: import("../types/rule.js").MatcherType.String;
5085
- } | {
5086
- path?: string | undefined;
5087
- type: import("../types/rule.js").MatcherType.ObjectKey;
5088
- } | {
5089
- path?: string | undefined;
5090
- type: import("../types/rule.js").MatcherType.ObjectValue;
5091
- } | {
5092
- match: ({
5093
- type: import("../types/rule.js").MatcherType.String;
5094
- } | {
5095
- path?: string | undefined;
5096
- type: import("../types/rule.js").MatcherType.ObjectKey;
5097
- } | {
5098
- path?: string | undefined;
5099
- type: import("../types/rule.js").MatcherType.ObjectValue;
5100
- })[];
5101
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5102
- })[] | undefined;
5103
- name: string;
5104
- })[];
5105
- } & {
5106
- allowMultiline: boolean;
5107
- }>];
5108
- Node: import("eslint").JSSyntaxElement;
5109
- MessageIds: "unnecessary";
5110
- }>) => import("eslint").Rule.RuleListener;
2682
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
5111
2683
  meta: {
5112
2684
  messages?: {
5113
2685
  readonly unnecessary: "Unnecessary whitespace.";
@@ -5120,7 +2692,7 @@ declare const rules: readonly [{
5120
2692
  fixable: "code" | undefined;
5121
2693
  schema: {
5122
2694
  additionalProperties: false;
5123
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
2695
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
5124
2696
  type: "object";
5125
2697
  }[];
5126
2698
  type: "problem" | "layout";
@@ -5330,208 +2902,7 @@ declare const rules: readonly [{
5330
2902
  };
5331
2903
  recommended: true;
5332
2904
  rule: {
5333
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
5334
- LangOptions: Linter.LanguageOptions;
5335
- Code: import("eslint").SourceCode;
5336
- RuleOptions: [Required<{
5337
- cwd?: string | undefined;
5338
- rootFontSize?: number | undefined;
5339
- detectComponentClasses: boolean;
5340
- tsconfig?: string | undefined;
5341
- tailwindConfig?: string | undefined;
5342
- messageStyle: "visual" | "compact" | "raw";
5343
- entryPoint?: string | undefined;
5344
- tags?: (string | [string, ({
5345
- match: import("../types/rule.js").MatcherType.String;
5346
- } | {
5347
- match: import("../types/rule.js").MatcherType.ObjectKey;
5348
- pathPattern?: string | undefined;
5349
- } | {
5350
- match: import("../types/rule.js").MatcherType.ObjectValue;
5351
- pathPattern?: string | undefined;
5352
- })[]])[] | undefined;
5353
- variables?: (string | [string, ({
5354
- match: import("../types/rule.js").MatcherType.String;
5355
- } | {
5356
- match: import("../types/rule.js").MatcherType.ObjectKey;
5357
- pathPattern?: string | undefined;
5358
- } | {
5359
- match: import("../types/rule.js").MatcherType.ObjectValue;
5360
- pathPattern?: string | undefined;
5361
- })[]])[] | undefined;
5362
- attributes?: (string | [string, ({
5363
- match: import("../types/rule.js").MatcherType.String;
5364
- } | {
5365
- match: import("../types/rule.js").MatcherType.ObjectKey;
5366
- pathPattern?: string | undefined;
5367
- } | {
5368
- match: import("../types/rule.js").MatcherType.ObjectValue;
5369
- pathPattern?: string | undefined;
5370
- })[]])[] | undefined;
5371
- callees?: (string | [string, ({
5372
- match: import("../types/rule.js").MatcherType.String;
5373
- } | {
5374
- match: import("../types/rule.js").MatcherType.ObjectKey;
5375
- pathPattern?: string | undefined;
5376
- } | {
5377
- match: import("../types/rule.js").MatcherType.ObjectValue;
5378
- pathPattern?: string | undefined;
5379
- })[]])[] | undefined;
5380
- selectors: ({
5381
- callTarget?: number | "all" | "first" | "last" | undefined;
5382
- kind: import("../types/rule.js").SelectorKind.Callee;
5383
- match?: ({
5384
- type: import("../types/rule.js").MatcherType.String;
5385
- } | {
5386
- path?: string | undefined;
5387
- type: import("../types/rule.js").MatcherType.ObjectKey;
5388
- } | {
5389
- path?: string | undefined;
5390
- type: import("../types/rule.js").MatcherType.ObjectValue;
5391
- } | {
5392
- match: ({
5393
- type: import("../types/rule.js").MatcherType.String;
5394
- } | {
5395
- path?: string | undefined;
5396
- type: import("../types/rule.js").MatcherType.ObjectKey;
5397
- } | {
5398
- path?: string | undefined;
5399
- type: import("../types/rule.js").MatcherType.ObjectValue;
5400
- })[];
5401
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5402
- })[] | undefined;
5403
- name: string;
5404
- path?: string | undefined;
5405
- targetArgument?: number | "all" | "first" | "last" | undefined;
5406
- targetCall?: number | "all" | "first" | "last" | undefined;
5407
- } | {
5408
- callTarget?: number | "all" | "first" | "last" | undefined;
5409
- kind: import("../types/rule.js").SelectorKind.Callee;
5410
- match?: ({
5411
- type: import("../types/rule.js").MatcherType.String;
5412
- } | {
5413
- path?: string | undefined;
5414
- type: import("../types/rule.js").MatcherType.ObjectKey;
5415
- } | {
5416
- path?: string | undefined;
5417
- type: import("../types/rule.js").MatcherType.ObjectValue;
5418
- } | {
5419
- match: ({
5420
- type: import("../types/rule.js").MatcherType.String;
5421
- } | {
5422
- path?: string | undefined;
5423
- type: import("../types/rule.js").MatcherType.ObjectKey;
5424
- } | {
5425
- path?: string | undefined;
5426
- type: import("../types/rule.js").MatcherType.ObjectValue;
5427
- })[];
5428
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5429
- })[] | undefined;
5430
- name?: string | undefined;
5431
- path: string;
5432
- targetArgument?: number | "all" | "first" | "last" | undefined;
5433
- targetCall?: number | "all" | "first" | "last" | undefined;
5434
- } | {
5435
- kind: import("../types/rule.js").SelectorKind.Tag;
5436
- match?: ({
5437
- type: import("../types/rule.js").MatcherType.String;
5438
- } | {
5439
- path?: string | undefined;
5440
- type: import("../types/rule.js").MatcherType.ObjectKey;
5441
- } | {
5442
- path?: string | undefined;
5443
- type: import("../types/rule.js").MatcherType.ObjectValue;
5444
- } | {
5445
- match: ({
5446
- type: import("../types/rule.js").MatcherType.String;
5447
- } | {
5448
- path?: string | undefined;
5449
- type: import("../types/rule.js").MatcherType.ObjectKey;
5450
- } | {
5451
- path?: string | undefined;
5452
- type: import("../types/rule.js").MatcherType.ObjectValue;
5453
- })[];
5454
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5455
- })[] | undefined;
5456
- name: string;
5457
- path?: string | undefined;
5458
- } | {
5459
- kind: import("../types/rule.js").SelectorKind.Tag;
5460
- match?: ({
5461
- type: import("../types/rule.js").MatcherType.String;
5462
- } | {
5463
- path?: string | undefined;
5464
- type: import("../types/rule.js").MatcherType.ObjectKey;
5465
- } | {
5466
- path?: string | undefined;
5467
- type: import("../types/rule.js").MatcherType.ObjectValue;
5468
- } | {
5469
- match: ({
5470
- type: import("../types/rule.js").MatcherType.String;
5471
- } | {
5472
- path?: string | undefined;
5473
- type: import("../types/rule.js").MatcherType.ObjectKey;
5474
- } | {
5475
- path?: string | undefined;
5476
- type: import("../types/rule.js").MatcherType.ObjectValue;
5477
- })[];
5478
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5479
- })[] | undefined;
5480
- name?: string | undefined;
5481
- path: string;
5482
- } | {
5483
- kind: import("../types/rule.js").SelectorKind.Attribute;
5484
- match?: ({
5485
- type: import("../types/rule.js").MatcherType.String;
5486
- } | {
5487
- path?: string | undefined;
5488
- type: import("../types/rule.js").MatcherType.ObjectKey;
5489
- } | {
5490
- path?: string | undefined;
5491
- type: import("../types/rule.js").MatcherType.ObjectValue;
5492
- } | {
5493
- match: ({
5494
- type: import("../types/rule.js").MatcherType.String;
5495
- } | {
5496
- path?: string | undefined;
5497
- type: import("../types/rule.js").MatcherType.ObjectKey;
5498
- } | {
5499
- path?: string | undefined;
5500
- type: import("../types/rule.js").MatcherType.ObjectValue;
5501
- })[];
5502
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5503
- })[] | undefined;
5504
- name: string;
5505
- } | {
5506
- kind: import("../types/rule.js").SelectorKind.Variable;
5507
- match?: ({
5508
- type: import("../types/rule.js").MatcherType.String;
5509
- } | {
5510
- path?: string | undefined;
5511
- type: import("../types/rule.js").MatcherType.ObjectKey;
5512
- } | {
5513
- path?: string | undefined;
5514
- type: import("../types/rule.js").MatcherType.ObjectValue;
5515
- } | {
5516
- match: ({
5517
- type: import("../types/rule.js").MatcherType.String;
5518
- } | {
5519
- path?: string | undefined;
5520
- type: import("../types/rule.js").MatcherType.ObjectKey;
5521
- } | {
5522
- path?: string | undefined;
5523
- type: import("../types/rule.js").MatcherType.ObjectValue;
5524
- })[];
5525
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5526
- })[] | undefined;
5527
- name: string;
5528
- })[];
5529
- } & {
5530
- ignore: string[];
5531
- }>];
5532
- Node: import("eslint").JSSyntaxElement;
5533
- MessageIds: "unknown";
5534
- }>) => import("eslint").Rule.RuleListener;
2905
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
5535
2906
  meta: {
5536
2907
  messages?: {
5537
2908
  readonly unknown: "Unknown class detected: {{ className }}";
@@ -5544,7 +2915,7 @@ declare const rules: readonly [{
5544
2915
  fixable: "code" | undefined;
5545
2916
  schema: {
5546
2917
  additionalProperties: false;
5547
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
2918
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
5548
2919
  type: "object";
5549
2920
  }[];
5550
2921
  type: "problem" | "layout";
@@ -5757,210 +3128,7 @@ declare const rules: readonly [{
5757
3128
  };
5758
3129
  recommended: true;
5759
3130
  rule: {
5760
- create: (ctx: import("node_modules/@eslint/core/dist/cjs/types.cjs").RuleContext<{
5761
- LangOptions: Linter.LanguageOptions;
5762
- Code: import("eslint").SourceCode;
5763
- RuleOptions: [Required<{
5764
- cwd?: string | undefined;
5765
- rootFontSize?: number | undefined;
5766
- detectComponentClasses: boolean;
5767
- tsconfig?: string | undefined;
5768
- tailwindConfig?: string | undefined;
5769
- messageStyle: "visual" | "compact" | "raw";
5770
- entryPoint?: string | undefined;
5771
- tags?: (string | [string, ({
5772
- match: import("../types/rule.js").MatcherType.String;
5773
- } | {
5774
- match: import("../types/rule.js").MatcherType.ObjectKey;
5775
- pathPattern?: string | undefined;
5776
- } | {
5777
- match: import("../types/rule.js").MatcherType.ObjectValue;
5778
- pathPattern?: string | undefined;
5779
- })[]])[] | undefined;
5780
- variables?: (string | [string, ({
5781
- match: import("../types/rule.js").MatcherType.String;
5782
- } | {
5783
- match: import("../types/rule.js").MatcherType.ObjectKey;
5784
- pathPattern?: string | undefined;
5785
- } | {
5786
- match: import("../types/rule.js").MatcherType.ObjectValue;
5787
- pathPattern?: string | undefined;
5788
- })[]])[] | undefined;
5789
- attributes?: (string | [string, ({
5790
- match: import("../types/rule.js").MatcherType.String;
5791
- } | {
5792
- match: import("../types/rule.js").MatcherType.ObjectKey;
5793
- pathPattern?: string | undefined;
5794
- } | {
5795
- match: import("../types/rule.js").MatcherType.ObjectValue;
5796
- pathPattern?: string | undefined;
5797
- })[]])[] | undefined;
5798
- callees?: (string | [string, ({
5799
- match: import("../types/rule.js").MatcherType.String;
5800
- } | {
5801
- match: import("../types/rule.js").MatcherType.ObjectKey;
5802
- pathPattern?: string | undefined;
5803
- } | {
5804
- match: import("../types/rule.js").MatcherType.ObjectValue;
5805
- pathPattern?: string | undefined;
5806
- })[]])[] | undefined;
5807
- selectors: ({
5808
- callTarget?: number | "all" | "first" | "last" | undefined;
5809
- kind: import("../types/rule.js").SelectorKind.Callee;
5810
- match?: ({
5811
- type: import("../types/rule.js").MatcherType.String;
5812
- } | {
5813
- path?: string | undefined;
5814
- type: import("../types/rule.js").MatcherType.ObjectKey;
5815
- } | {
5816
- path?: string | undefined;
5817
- type: import("../types/rule.js").MatcherType.ObjectValue;
5818
- } | {
5819
- match: ({
5820
- type: import("../types/rule.js").MatcherType.String;
5821
- } | {
5822
- path?: string | undefined;
5823
- type: import("../types/rule.js").MatcherType.ObjectKey;
5824
- } | {
5825
- path?: string | undefined;
5826
- type: import("../types/rule.js").MatcherType.ObjectValue;
5827
- })[];
5828
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5829
- })[] | undefined;
5830
- name: string;
5831
- path?: string | undefined;
5832
- targetArgument?: number | "all" | "first" | "last" | undefined;
5833
- targetCall?: number | "all" | "first" | "last" | undefined;
5834
- } | {
5835
- callTarget?: number | "all" | "first" | "last" | undefined;
5836
- kind: import("../types/rule.js").SelectorKind.Callee;
5837
- match?: ({
5838
- type: import("../types/rule.js").MatcherType.String;
5839
- } | {
5840
- path?: string | undefined;
5841
- type: import("../types/rule.js").MatcherType.ObjectKey;
5842
- } | {
5843
- path?: string | undefined;
5844
- type: import("../types/rule.js").MatcherType.ObjectValue;
5845
- } | {
5846
- match: ({
5847
- type: import("../types/rule.js").MatcherType.String;
5848
- } | {
5849
- path?: string | undefined;
5850
- type: import("../types/rule.js").MatcherType.ObjectKey;
5851
- } | {
5852
- path?: string | undefined;
5853
- type: import("../types/rule.js").MatcherType.ObjectValue;
5854
- })[];
5855
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5856
- })[] | undefined;
5857
- name?: string | undefined;
5858
- path: string;
5859
- targetArgument?: number | "all" | "first" | "last" | undefined;
5860
- targetCall?: number | "all" | "first" | "last" | undefined;
5861
- } | {
5862
- kind: import("../types/rule.js").SelectorKind.Tag;
5863
- match?: ({
5864
- type: import("../types/rule.js").MatcherType.String;
5865
- } | {
5866
- path?: string | undefined;
5867
- type: import("../types/rule.js").MatcherType.ObjectKey;
5868
- } | {
5869
- path?: string | undefined;
5870
- type: import("../types/rule.js").MatcherType.ObjectValue;
5871
- } | {
5872
- match: ({
5873
- type: import("../types/rule.js").MatcherType.String;
5874
- } | {
5875
- path?: string | undefined;
5876
- type: import("../types/rule.js").MatcherType.ObjectKey;
5877
- } | {
5878
- path?: string | undefined;
5879
- type: import("../types/rule.js").MatcherType.ObjectValue;
5880
- })[];
5881
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5882
- })[] | undefined;
5883
- name: string;
5884
- path?: string | undefined;
5885
- } | {
5886
- kind: import("../types/rule.js").SelectorKind.Tag;
5887
- match?: ({
5888
- type: import("../types/rule.js").MatcherType.String;
5889
- } | {
5890
- path?: string | undefined;
5891
- type: import("../types/rule.js").MatcherType.ObjectKey;
5892
- } | {
5893
- path?: string | undefined;
5894
- type: import("../types/rule.js").MatcherType.ObjectValue;
5895
- } | {
5896
- match: ({
5897
- type: import("../types/rule.js").MatcherType.String;
5898
- } | {
5899
- path?: string | undefined;
5900
- type: import("../types/rule.js").MatcherType.ObjectKey;
5901
- } | {
5902
- path?: string | undefined;
5903
- type: import("../types/rule.js").MatcherType.ObjectValue;
5904
- })[];
5905
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5906
- })[] | undefined;
5907
- name?: string | undefined;
5908
- path: string;
5909
- } | {
5910
- kind: import("../types/rule.js").SelectorKind.Attribute;
5911
- match?: ({
5912
- type: import("../types/rule.js").MatcherType.String;
5913
- } | {
5914
- path?: string | undefined;
5915
- type: import("../types/rule.js").MatcherType.ObjectKey;
5916
- } | {
5917
- path?: string | undefined;
5918
- type: import("../types/rule.js").MatcherType.ObjectValue;
5919
- } | {
5920
- match: ({
5921
- type: import("../types/rule.js").MatcherType.String;
5922
- } | {
5923
- path?: string | undefined;
5924
- type: import("../types/rule.js").MatcherType.ObjectKey;
5925
- } | {
5926
- path?: string | undefined;
5927
- type: import("../types/rule.js").MatcherType.ObjectValue;
5928
- })[];
5929
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5930
- })[] | undefined;
5931
- name: string;
5932
- } | {
5933
- kind: import("../types/rule.js").SelectorKind.Variable;
5934
- match?: ({
5935
- type: import("../types/rule.js").MatcherType.String;
5936
- } | {
5937
- path?: string | undefined;
5938
- type: import("../types/rule.js").MatcherType.ObjectKey;
5939
- } | {
5940
- path?: string | undefined;
5941
- type: import("../types/rule.js").MatcherType.ObjectValue;
5942
- } | {
5943
- match: ({
5944
- type: import("../types/rule.js").MatcherType.String;
5945
- } | {
5946
- path?: string | undefined;
5947
- type: import("../types/rule.js").MatcherType.ObjectKey;
5948
- } | {
5949
- path?: string | undefined;
5950
- type: import("../types/rule.js").MatcherType.ObjectValue;
5951
- })[];
5952
- type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
5953
- })[] | undefined;
5954
- name: string;
5955
- })[];
5956
- } & {
5957
- collapse: boolean;
5958
- ignore: string[];
5959
- logical: boolean;
5960
- }>];
5961
- Node: import("eslint").JSSyntaxElement;
5962
- MessageIds: "multiple" | "single";
5963
- }>) => import("eslint").Rule.RuleListener;
3131
+ create: (ctx: import("node_modules/eslint/lib/types/index.js").Rule.RuleContext) => import("node_modules/eslint/lib/types/index.js").Rule.RuleListener;
5964
3132
  meta: {
5965
3133
  messages?: {
5966
3134
  readonly multiple: "The classes: \"{{ classNames }}\" can be simplified to \"{{canonicalClass}}\".";
@@ -5974,7 +3142,7 @@ declare const rules: readonly [{
5974
3142
  fixable: "code" | undefined;
5975
3143
  schema: {
5976
3144
  additionalProperties: false;
5977
- properties: Record<string, boolean | import("@valibot/to-json-schema").JsonSchema> | undefined;
3145
+ properties: Record<string, boolean | import("node_modules/@valibot/to-json-schema/dist/index.mjs").JsonSchema> | undefined;
5978
3146
  type: "object";
5979
3147
  }[];
5980
3148
  type: "problem" | "layout";