@eslint-react/eslint-plugin 2.0.0-next.159 → 2.0.0-next.160
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +116 -190
- package/dist/index.js +1 -1
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _eslint_react_kit63 from "@eslint-react/kit";
|
|
2
2
|
import { RuleConfig } from "@eslint-react/kit";
|
|
3
3
|
|
|
4
4
|
//#region src/configs/all.d.ts
|
|
@@ -98,12 +98,10 @@ declare const plugins$6: {
|
|
|
98
98
|
"@eslint-react/debug": {
|
|
99
99
|
configs: {
|
|
100
100
|
all: {
|
|
101
|
-
plugins: {
|
|
102
|
-
"react-debug": _eslint_react_kit64.CompatiblePlugin;
|
|
103
|
-
};
|
|
101
|
+
plugins: {};
|
|
104
102
|
name?: string;
|
|
105
103
|
rules?: Record<string, RuleConfig>;
|
|
106
|
-
settings?:
|
|
104
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
107
105
|
};
|
|
108
106
|
"all-legacy": {
|
|
109
107
|
plugins: string[];
|
|
@@ -114,17 +112,15 @@ declare const plugins$6: {
|
|
|
114
112
|
name: string;
|
|
115
113
|
version: string;
|
|
116
114
|
};
|
|
117
|
-
rules: Record<string,
|
|
115
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
118
116
|
};
|
|
119
117
|
"@eslint-react/hooks-extra": {
|
|
120
118
|
configs: {
|
|
121
119
|
recommended: {
|
|
122
|
-
plugins: {
|
|
123
|
-
"react-hooks-extra": _eslint_react_kit64.CompatiblePlugin;
|
|
124
|
-
};
|
|
120
|
+
plugins: {};
|
|
125
121
|
name?: string;
|
|
126
122
|
rules?: Record<string, RuleConfig>;
|
|
127
|
-
settings?:
|
|
123
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
128
124
|
};
|
|
129
125
|
"recommended-legacy": {
|
|
130
126
|
plugins: string[];
|
|
@@ -135,17 +131,15 @@ declare const plugins$6: {
|
|
|
135
131
|
name: string;
|
|
136
132
|
version: string;
|
|
137
133
|
};
|
|
138
|
-
rules: Record<string,
|
|
134
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
139
135
|
};
|
|
140
136
|
"@eslint-react/naming-convention": {
|
|
141
137
|
configs: {
|
|
142
138
|
recommended: {
|
|
143
|
-
plugins: {
|
|
144
|
-
"react-naming-convention": _eslint_react_kit64.CompatiblePlugin;
|
|
145
|
-
};
|
|
139
|
+
plugins: {};
|
|
146
140
|
name?: string;
|
|
147
141
|
rules?: Record<string, RuleConfig>;
|
|
148
|
-
settings?:
|
|
142
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
149
143
|
};
|
|
150
144
|
"recommended-legacy": {
|
|
151
145
|
plugins: string[];
|
|
@@ -156,17 +150,15 @@ declare const plugins$6: {
|
|
|
156
150
|
name: string;
|
|
157
151
|
version: string;
|
|
158
152
|
};
|
|
159
|
-
rules: Record<string,
|
|
153
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
160
154
|
};
|
|
161
155
|
"@eslint-react/web-api": {
|
|
162
156
|
configs: {
|
|
163
157
|
recommended: {
|
|
164
|
-
plugins: {
|
|
165
|
-
"react-web-api": _eslint_react_kit64.CompatiblePlugin;
|
|
166
|
-
};
|
|
158
|
+
plugins: {};
|
|
167
159
|
name?: string;
|
|
168
160
|
rules?: Record<string, RuleConfig>;
|
|
169
|
-
settings?:
|
|
161
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
170
162
|
};
|
|
171
163
|
"recommended-legacy": {
|
|
172
164
|
plugins: string[];
|
|
@@ -177,17 +169,15 @@ declare const plugins$6: {
|
|
|
177
169
|
name: string;
|
|
178
170
|
version: string;
|
|
179
171
|
};
|
|
180
|
-
rules: Record<string,
|
|
172
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
181
173
|
};
|
|
182
174
|
"@eslint-react/dom": {
|
|
183
175
|
configs: {
|
|
184
176
|
recommended: {
|
|
185
|
-
plugins: {
|
|
186
|
-
"react-dom": _eslint_react_kit64.CompatiblePlugin;
|
|
187
|
-
};
|
|
177
|
+
plugins: {};
|
|
188
178
|
name?: string;
|
|
189
179
|
rules?: Record<string, RuleConfig>;
|
|
190
|
-
settings?:
|
|
180
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
191
181
|
};
|
|
192
182
|
"recommended-legacy": {
|
|
193
183
|
plugins: string[];
|
|
@@ -198,41 +188,35 @@ declare const plugins$6: {
|
|
|
198
188
|
name: string;
|
|
199
189
|
version: string;
|
|
200
190
|
};
|
|
201
|
-
rules: Record<string,
|
|
191
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
202
192
|
};
|
|
203
193
|
"@eslint-react": {
|
|
204
194
|
configs: {
|
|
205
195
|
recommended: {
|
|
206
|
-
plugins: {
|
|
207
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
208
|
-
};
|
|
196
|
+
plugins: {};
|
|
209
197
|
name?: string;
|
|
210
198
|
rules?: Record<string, RuleConfig>;
|
|
211
|
-
settings?:
|
|
199
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
212
200
|
};
|
|
213
201
|
"recommended-legacy": {
|
|
214
202
|
plugins: string[];
|
|
215
203
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
216
204
|
};
|
|
217
205
|
"recommended-type-checked": {
|
|
218
|
-
plugins: {
|
|
219
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
220
|
-
};
|
|
206
|
+
plugins: {};
|
|
221
207
|
name?: string;
|
|
222
208
|
rules?: Record<string, RuleConfig>;
|
|
223
|
-
settings?:
|
|
209
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
224
210
|
};
|
|
225
211
|
"recommended-type-checked-legacy": {
|
|
226
212
|
plugins: string[];
|
|
227
213
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
228
214
|
};
|
|
229
215
|
"recommended-typescript": {
|
|
230
|
-
plugins: {
|
|
231
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
232
|
-
};
|
|
216
|
+
plugins: {};
|
|
233
217
|
name?: string;
|
|
234
218
|
rules?: Record<string, RuleConfig>;
|
|
235
|
-
settings?:
|
|
219
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
236
220
|
};
|
|
237
221
|
"recommended-typescript-legacy": {
|
|
238
222
|
plugins: string[];
|
|
@@ -243,7 +227,7 @@ declare const plugins$6: {
|
|
|
243
227
|
name: string;
|
|
244
228
|
version: string;
|
|
245
229
|
};
|
|
246
|
-
rules: Record<string,
|
|
230
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
247
231
|
};
|
|
248
232
|
};
|
|
249
233
|
declare const settings$5: {
|
|
@@ -275,12 +259,10 @@ declare const plugins$5: {
|
|
|
275
259
|
"@eslint-react/debug": {
|
|
276
260
|
configs: {
|
|
277
261
|
all: {
|
|
278
|
-
plugins: {
|
|
279
|
-
"react-debug": _eslint_react_kit64.CompatiblePlugin;
|
|
280
|
-
};
|
|
262
|
+
plugins: {};
|
|
281
263
|
name?: string;
|
|
282
264
|
rules?: Record<string, RuleConfig>;
|
|
283
|
-
settings?:
|
|
265
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
284
266
|
};
|
|
285
267
|
"all-legacy": {
|
|
286
268
|
plugins: string[];
|
|
@@ -291,7 +273,7 @@ declare const plugins$5: {
|
|
|
291
273
|
name: string;
|
|
292
274
|
version: string;
|
|
293
275
|
};
|
|
294
|
-
rules: Record<string,
|
|
276
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
295
277
|
};
|
|
296
278
|
};
|
|
297
279
|
declare namespace disable_conflict_eslint_plugin_react_d_exports {
|
|
@@ -344,12 +326,10 @@ declare const plugins$4: {
|
|
|
344
326
|
"@eslint-react/dom": {
|
|
345
327
|
configs: {
|
|
346
328
|
recommended: {
|
|
347
|
-
plugins: {
|
|
348
|
-
"react-dom": _eslint_react_kit64.CompatiblePlugin;
|
|
349
|
-
};
|
|
329
|
+
plugins: {};
|
|
350
330
|
name?: string;
|
|
351
331
|
rules?: Record<string, RuleConfig>;
|
|
352
|
-
settings?:
|
|
332
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
353
333
|
};
|
|
354
334
|
"recommended-legacy": {
|
|
355
335
|
plugins: string[];
|
|
@@ -360,7 +340,7 @@ declare const plugins$4: {
|
|
|
360
340
|
name: string;
|
|
361
341
|
version: string;
|
|
362
342
|
};
|
|
363
|
-
rules: Record<string,
|
|
343
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
364
344
|
};
|
|
365
345
|
};
|
|
366
346
|
declare const settings$4: {
|
|
@@ -455,12 +435,10 @@ declare const plugins$3: {
|
|
|
455
435
|
"@eslint-react/debug": {
|
|
456
436
|
configs: {
|
|
457
437
|
all: {
|
|
458
|
-
plugins: {
|
|
459
|
-
"react-debug": _eslint_react_kit64.CompatiblePlugin;
|
|
460
|
-
};
|
|
438
|
+
plugins: {};
|
|
461
439
|
name?: string;
|
|
462
440
|
rules?: Record<string, RuleConfig>;
|
|
463
|
-
settings?:
|
|
441
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
464
442
|
};
|
|
465
443
|
"all-legacy": {
|
|
466
444
|
plugins: string[];
|
|
@@ -471,17 +449,15 @@ declare const plugins$3: {
|
|
|
471
449
|
name: string;
|
|
472
450
|
version: string;
|
|
473
451
|
};
|
|
474
|
-
rules: Record<string,
|
|
452
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
475
453
|
};
|
|
476
454
|
"@eslint-react/hooks-extra": {
|
|
477
455
|
configs: {
|
|
478
456
|
recommended: {
|
|
479
|
-
plugins: {
|
|
480
|
-
"react-hooks-extra": _eslint_react_kit64.CompatiblePlugin;
|
|
481
|
-
};
|
|
457
|
+
plugins: {};
|
|
482
458
|
name?: string;
|
|
483
459
|
rules?: Record<string, RuleConfig>;
|
|
484
|
-
settings?:
|
|
460
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
485
461
|
};
|
|
486
462
|
"recommended-legacy": {
|
|
487
463
|
plugins: string[];
|
|
@@ -492,17 +468,15 @@ declare const plugins$3: {
|
|
|
492
468
|
name: string;
|
|
493
469
|
version: string;
|
|
494
470
|
};
|
|
495
|
-
rules: Record<string,
|
|
471
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
496
472
|
};
|
|
497
473
|
"@eslint-react/naming-convention": {
|
|
498
474
|
configs: {
|
|
499
475
|
recommended: {
|
|
500
|
-
plugins: {
|
|
501
|
-
"react-naming-convention": _eslint_react_kit64.CompatiblePlugin;
|
|
502
|
-
};
|
|
476
|
+
plugins: {};
|
|
503
477
|
name?: string;
|
|
504
478
|
rules?: Record<string, RuleConfig>;
|
|
505
|
-
settings?:
|
|
479
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
506
480
|
};
|
|
507
481
|
"recommended-legacy": {
|
|
508
482
|
plugins: string[];
|
|
@@ -513,17 +487,15 @@ declare const plugins$3: {
|
|
|
513
487
|
name: string;
|
|
514
488
|
version: string;
|
|
515
489
|
};
|
|
516
|
-
rules: Record<string,
|
|
490
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
517
491
|
};
|
|
518
492
|
"@eslint-react/web-api": {
|
|
519
493
|
configs: {
|
|
520
494
|
recommended: {
|
|
521
|
-
plugins: {
|
|
522
|
-
"react-web-api": _eslint_react_kit64.CompatiblePlugin;
|
|
523
|
-
};
|
|
495
|
+
plugins: {};
|
|
524
496
|
name?: string;
|
|
525
497
|
rules?: Record<string, RuleConfig>;
|
|
526
|
-
settings?:
|
|
498
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
527
499
|
};
|
|
528
500
|
"recommended-legacy": {
|
|
529
501
|
plugins: string[];
|
|
@@ -534,17 +506,15 @@ declare const plugins$3: {
|
|
|
534
506
|
name: string;
|
|
535
507
|
version: string;
|
|
536
508
|
};
|
|
537
|
-
rules: Record<string,
|
|
509
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
538
510
|
};
|
|
539
511
|
"@eslint-react/dom": {
|
|
540
512
|
configs: {
|
|
541
513
|
recommended: {
|
|
542
|
-
plugins: {
|
|
543
|
-
"react-dom": _eslint_react_kit64.CompatiblePlugin;
|
|
544
|
-
};
|
|
514
|
+
plugins: {};
|
|
545
515
|
name?: string;
|
|
546
516
|
rules?: Record<string, RuleConfig>;
|
|
547
|
-
settings?:
|
|
517
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
548
518
|
};
|
|
549
519
|
"recommended-legacy": {
|
|
550
520
|
plugins: string[];
|
|
@@ -555,41 +525,35 @@ declare const plugins$3: {
|
|
|
555
525
|
name: string;
|
|
556
526
|
version: string;
|
|
557
527
|
};
|
|
558
|
-
rules: Record<string,
|
|
528
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
559
529
|
};
|
|
560
530
|
"@eslint-react": {
|
|
561
531
|
configs: {
|
|
562
532
|
recommended: {
|
|
563
|
-
plugins: {
|
|
564
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
565
|
-
};
|
|
533
|
+
plugins: {};
|
|
566
534
|
name?: string;
|
|
567
535
|
rules?: Record<string, RuleConfig>;
|
|
568
|
-
settings?:
|
|
536
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
569
537
|
};
|
|
570
538
|
"recommended-legacy": {
|
|
571
539
|
plugins: string[];
|
|
572
540
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
573
541
|
};
|
|
574
542
|
"recommended-type-checked": {
|
|
575
|
-
plugins: {
|
|
576
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
577
|
-
};
|
|
543
|
+
plugins: {};
|
|
578
544
|
name?: string;
|
|
579
545
|
rules?: Record<string, RuleConfig>;
|
|
580
|
-
settings?:
|
|
546
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
581
547
|
};
|
|
582
548
|
"recommended-type-checked-legacy": {
|
|
583
549
|
plugins: string[];
|
|
584
550
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
585
551
|
};
|
|
586
552
|
"recommended-typescript": {
|
|
587
|
-
plugins: {
|
|
588
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
589
|
-
};
|
|
553
|
+
plugins: {};
|
|
590
554
|
name?: string;
|
|
591
555
|
rules?: Record<string, RuleConfig>;
|
|
592
|
-
settings?:
|
|
556
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
593
557
|
};
|
|
594
558
|
"recommended-typescript-legacy": {
|
|
595
559
|
plugins: string[];
|
|
@@ -600,7 +564,7 @@ declare const plugins$3: {
|
|
|
600
564
|
name: string;
|
|
601
565
|
version: string;
|
|
602
566
|
};
|
|
603
|
-
rules: Record<string,
|
|
567
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
604
568
|
};
|
|
605
569
|
};
|
|
606
570
|
declare const settings$3: {
|
|
@@ -694,12 +658,10 @@ declare const plugins$2: {
|
|
|
694
658
|
"@eslint-react/debug": {
|
|
695
659
|
configs: {
|
|
696
660
|
all: {
|
|
697
|
-
plugins: {
|
|
698
|
-
"react-debug": _eslint_react_kit64.CompatiblePlugin;
|
|
699
|
-
};
|
|
661
|
+
plugins: {};
|
|
700
662
|
name?: string;
|
|
701
663
|
rules?: Record<string, RuleConfig>;
|
|
702
|
-
settings?:
|
|
664
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
703
665
|
};
|
|
704
666
|
"all-legacy": {
|
|
705
667
|
plugins: string[];
|
|
@@ -710,17 +672,15 @@ declare const plugins$2: {
|
|
|
710
672
|
name: string;
|
|
711
673
|
version: string;
|
|
712
674
|
};
|
|
713
|
-
rules: Record<string,
|
|
675
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
714
676
|
};
|
|
715
677
|
"@eslint-react/hooks-extra": {
|
|
716
678
|
configs: {
|
|
717
679
|
recommended: {
|
|
718
|
-
plugins: {
|
|
719
|
-
"react-hooks-extra": _eslint_react_kit64.CompatiblePlugin;
|
|
720
|
-
};
|
|
680
|
+
plugins: {};
|
|
721
681
|
name?: string;
|
|
722
682
|
rules?: Record<string, RuleConfig>;
|
|
723
|
-
settings?:
|
|
683
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
724
684
|
};
|
|
725
685
|
"recommended-legacy": {
|
|
726
686
|
plugins: string[];
|
|
@@ -731,17 +691,15 @@ declare const plugins$2: {
|
|
|
731
691
|
name: string;
|
|
732
692
|
version: string;
|
|
733
693
|
};
|
|
734
|
-
rules: Record<string,
|
|
694
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
735
695
|
};
|
|
736
696
|
"@eslint-react/naming-convention": {
|
|
737
697
|
configs: {
|
|
738
698
|
recommended: {
|
|
739
|
-
plugins: {
|
|
740
|
-
"react-naming-convention": _eslint_react_kit64.CompatiblePlugin;
|
|
741
|
-
};
|
|
699
|
+
plugins: {};
|
|
742
700
|
name?: string;
|
|
743
701
|
rules?: Record<string, RuleConfig>;
|
|
744
|
-
settings?:
|
|
702
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
745
703
|
};
|
|
746
704
|
"recommended-legacy": {
|
|
747
705
|
plugins: string[];
|
|
@@ -752,17 +710,15 @@ declare const plugins$2: {
|
|
|
752
710
|
name: string;
|
|
753
711
|
version: string;
|
|
754
712
|
};
|
|
755
|
-
rules: Record<string,
|
|
713
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
756
714
|
};
|
|
757
715
|
"@eslint-react/web-api": {
|
|
758
716
|
configs: {
|
|
759
717
|
recommended: {
|
|
760
|
-
plugins: {
|
|
761
|
-
"react-web-api": _eslint_react_kit64.CompatiblePlugin;
|
|
762
|
-
};
|
|
718
|
+
plugins: {};
|
|
763
719
|
name?: string;
|
|
764
720
|
rules?: Record<string, RuleConfig>;
|
|
765
|
-
settings?:
|
|
721
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
766
722
|
};
|
|
767
723
|
"recommended-legacy": {
|
|
768
724
|
plugins: string[];
|
|
@@ -773,17 +729,15 @@ declare const plugins$2: {
|
|
|
773
729
|
name: string;
|
|
774
730
|
version: string;
|
|
775
731
|
};
|
|
776
|
-
rules: Record<string,
|
|
732
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
777
733
|
};
|
|
778
734
|
"@eslint-react/dom": {
|
|
779
735
|
configs: {
|
|
780
736
|
recommended: {
|
|
781
|
-
plugins: {
|
|
782
|
-
"react-dom": _eslint_react_kit64.CompatiblePlugin;
|
|
783
|
-
};
|
|
737
|
+
plugins: {};
|
|
784
738
|
name?: string;
|
|
785
739
|
rules?: Record<string, RuleConfig>;
|
|
786
|
-
settings?:
|
|
740
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
787
741
|
};
|
|
788
742
|
"recommended-legacy": {
|
|
789
743
|
plugins: string[];
|
|
@@ -794,41 +748,35 @@ declare const plugins$2: {
|
|
|
794
748
|
name: string;
|
|
795
749
|
version: string;
|
|
796
750
|
};
|
|
797
|
-
rules: Record<string,
|
|
751
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
798
752
|
};
|
|
799
753
|
"@eslint-react": {
|
|
800
754
|
configs: {
|
|
801
755
|
recommended: {
|
|
802
|
-
plugins: {
|
|
803
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
804
|
-
};
|
|
756
|
+
plugins: {};
|
|
805
757
|
name?: string;
|
|
806
758
|
rules?: Record<string, RuleConfig>;
|
|
807
|
-
settings?:
|
|
759
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
808
760
|
};
|
|
809
761
|
"recommended-legacy": {
|
|
810
762
|
plugins: string[];
|
|
811
763
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
812
764
|
};
|
|
813
765
|
"recommended-type-checked": {
|
|
814
|
-
plugins: {
|
|
815
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
816
|
-
};
|
|
766
|
+
plugins: {};
|
|
817
767
|
name?: string;
|
|
818
768
|
rules?: Record<string, RuleConfig>;
|
|
819
|
-
settings?:
|
|
769
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
820
770
|
};
|
|
821
771
|
"recommended-type-checked-legacy": {
|
|
822
772
|
plugins: string[];
|
|
823
773
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
824
774
|
};
|
|
825
775
|
"recommended-typescript": {
|
|
826
|
-
plugins: {
|
|
827
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
828
|
-
};
|
|
776
|
+
plugins: {};
|
|
829
777
|
name?: string;
|
|
830
778
|
rules?: Record<string, RuleConfig>;
|
|
831
|
-
settings?:
|
|
779
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
832
780
|
};
|
|
833
781
|
"recommended-typescript-legacy": {
|
|
834
782
|
plugins: string[];
|
|
@@ -839,7 +787,7 @@ declare const plugins$2: {
|
|
|
839
787
|
name: string;
|
|
840
788
|
version: string;
|
|
841
789
|
};
|
|
842
|
-
rules: Record<string,
|
|
790
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
843
791
|
};
|
|
844
792
|
};
|
|
845
793
|
declare const settings$2: {
|
|
@@ -931,12 +879,10 @@ declare const plugins$1: {
|
|
|
931
879
|
"@eslint-react/debug": {
|
|
932
880
|
configs: {
|
|
933
881
|
all: {
|
|
934
|
-
plugins: {
|
|
935
|
-
"react-debug": _eslint_react_kit64.CompatiblePlugin;
|
|
936
|
-
};
|
|
882
|
+
plugins: {};
|
|
937
883
|
name?: string;
|
|
938
884
|
rules?: Record<string, RuleConfig>;
|
|
939
|
-
settings?:
|
|
885
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
940
886
|
};
|
|
941
887
|
"all-legacy": {
|
|
942
888
|
plugins: string[];
|
|
@@ -947,17 +893,15 @@ declare const plugins$1: {
|
|
|
947
893
|
name: string;
|
|
948
894
|
version: string;
|
|
949
895
|
};
|
|
950
|
-
rules: Record<string,
|
|
896
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
951
897
|
};
|
|
952
898
|
"@eslint-react/hooks-extra": {
|
|
953
899
|
configs: {
|
|
954
900
|
recommended: {
|
|
955
|
-
plugins: {
|
|
956
|
-
"react-hooks-extra": _eslint_react_kit64.CompatiblePlugin;
|
|
957
|
-
};
|
|
901
|
+
plugins: {};
|
|
958
902
|
name?: string;
|
|
959
903
|
rules?: Record<string, RuleConfig>;
|
|
960
|
-
settings?:
|
|
904
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
961
905
|
};
|
|
962
906
|
"recommended-legacy": {
|
|
963
907
|
plugins: string[];
|
|
@@ -968,17 +912,15 @@ declare const plugins$1: {
|
|
|
968
912
|
name: string;
|
|
969
913
|
version: string;
|
|
970
914
|
};
|
|
971
|
-
rules: Record<string,
|
|
915
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
972
916
|
};
|
|
973
917
|
"@eslint-react/naming-convention": {
|
|
974
918
|
configs: {
|
|
975
919
|
recommended: {
|
|
976
|
-
plugins: {
|
|
977
|
-
"react-naming-convention": _eslint_react_kit64.CompatiblePlugin;
|
|
978
|
-
};
|
|
920
|
+
plugins: {};
|
|
979
921
|
name?: string;
|
|
980
922
|
rules?: Record<string, RuleConfig>;
|
|
981
|
-
settings?:
|
|
923
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
982
924
|
};
|
|
983
925
|
"recommended-legacy": {
|
|
984
926
|
plugins: string[];
|
|
@@ -989,17 +931,15 @@ declare const plugins$1: {
|
|
|
989
931
|
name: string;
|
|
990
932
|
version: string;
|
|
991
933
|
};
|
|
992
|
-
rules: Record<string,
|
|
934
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
993
935
|
};
|
|
994
936
|
"@eslint-react/web-api": {
|
|
995
937
|
configs: {
|
|
996
938
|
recommended: {
|
|
997
|
-
plugins: {
|
|
998
|
-
"react-web-api": _eslint_react_kit64.CompatiblePlugin;
|
|
999
|
-
};
|
|
939
|
+
plugins: {};
|
|
1000
940
|
name?: string;
|
|
1001
941
|
rules?: Record<string, RuleConfig>;
|
|
1002
|
-
settings?:
|
|
942
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1003
943
|
};
|
|
1004
944
|
"recommended-legacy": {
|
|
1005
945
|
plugins: string[];
|
|
@@ -1010,17 +950,15 @@ declare const plugins$1: {
|
|
|
1010
950
|
name: string;
|
|
1011
951
|
version: string;
|
|
1012
952
|
};
|
|
1013
|
-
rules: Record<string,
|
|
953
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
1014
954
|
};
|
|
1015
955
|
"@eslint-react/dom": {
|
|
1016
956
|
configs: {
|
|
1017
957
|
recommended: {
|
|
1018
|
-
plugins: {
|
|
1019
|
-
"react-dom": _eslint_react_kit64.CompatiblePlugin;
|
|
1020
|
-
};
|
|
958
|
+
plugins: {};
|
|
1021
959
|
name?: string;
|
|
1022
960
|
rules?: Record<string, RuleConfig>;
|
|
1023
|
-
settings?:
|
|
961
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1024
962
|
};
|
|
1025
963
|
"recommended-legacy": {
|
|
1026
964
|
plugins: string[];
|
|
@@ -1031,41 +969,35 @@ declare const plugins$1: {
|
|
|
1031
969
|
name: string;
|
|
1032
970
|
version: string;
|
|
1033
971
|
};
|
|
1034
|
-
rules: Record<string,
|
|
972
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
1035
973
|
};
|
|
1036
974
|
"@eslint-react": {
|
|
1037
975
|
configs: {
|
|
1038
976
|
recommended: {
|
|
1039
|
-
plugins: {
|
|
1040
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
1041
|
-
};
|
|
977
|
+
plugins: {};
|
|
1042
978
|
name?: string;
|
|
1043
979
|
rules?: Record<string, RuleConfig>;
|
|
1044
|
-
settings?:
|
|
980
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1045
981
|
};
|
|
1046
982
|
"recommended-legacy": {
|
|
1047
983
|
plugins: string[];
|
|
1048
984
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
1049
985
|
};
|
|
1050
986
|
"recommended-type-checked": {
|
|
1051
|
-
plugins: {
|
|
1052
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
1053
|
-
};
|
|
987
|
+
plugins: {};
|
|
1054
988
|
name?: string;
|
|
1055
989
|
rules?: Record<string, RuleConfig>;
|
|
1056
|
-
settings?:
|
|
990
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1057
991
|
};
|
|
1058
992
|
"recommended-type-checked-legacy": {
|
|
1059
993
|
plugins: string[];
|
|
1060
994
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
1061
995
|
};
|
|
1062
996
|
"recommended-typescript": {
|
|
1063
|
-
plugins: {
|
|
1064
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
1065
|
-
};
|
|
997
|
+
plugins: {};
|
|
1066
998
|
name?: string;
|
|
1067
999
|
rules?: Record<string, RuleConfig>;
|
|
1068
|
-
settings?:
|
|
1000
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1069
1001
|
};
|
|
1070
1002
|
"recommended-typescript-legacy": {
|
|
1071
1003
|
plugins: string[];
|
|
@@ -1076,7 +1008,7 @@ declare const plugins$1: {
|
|
|
1076
1008
|
name: string;
|
|
1077
1009
|
version: string;
|
|
1078
1010
|
};
|
|
1079
|
-
rules: Record<string,
|
|
1011
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
1080
1012
|
};
|
|
1081
1013
|
};
|
|
1082
1014
|
declare const settings$1: {
|
|
@@ -1146,36 +1078,30 @@ declare const plugins: {
|
|
|
1146
1078
|
"@eslint-react": {
|
|
1147
1079
|
configs: {
|
|
1148
1080
|
recommended: {
|
|
1149
|
-
plugins: {
|
|
1150
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
1151
|
-
};
|
|
1081
|
+
plugins: {};
|
|
1152
1082
|
name?: string;
|
|
1153
1083
|
rules?: Record<string, RuleConfig>;
|
|
1154
|
-
settings?:
|
|
1084
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1155
1085
|
};
|
|
1156
1086
|
"recommended-legacy": {
|
|
1157
1087
|
plugins: string[];
|
|
1158
1088
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
1159
1089
|
};
|
|
1160
1090
|
"recommended-type-checked": {
|
|
1161
|
-
plugins: {
|
|
1162
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
1163
|
-
};
|
|
1091
|
+
plugins: {};
|
|
1164
1092
|
name?: string;
|
|
1165
1093
|
rules?: Record<string, RuleConfig>;
|
|
1166
|
-
settings?:
|
|
1094
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1167
1095
|
};
|
|
1168
1096
|
"recommended-type-checked-legacy": {
|
|
1169
1097
|
plugins: string[];
|
|
1170
1098
|
rules: Record<string, RuleConfig<unknown[]>> | undefined;
|
|
1171
1099
|
};
|
|
1172
1100
|
"recommended-typescript": {
|
|
1173
|
-
plugins: {
|
|
1174
|
-
"react-x": _eslint_react_kit64.CompatiblePlugin;
|
|
1175
|
-
};
|
|
1101
|
+
plugins: {};
|
|
1176
1102
|
name?: string;
|
|
1177
1103
|
rules?: Record<string, RuleConfig>;
|
|
1178
|
-
settings?:
|
|
1104
|
+
settings?: _eslint_react_kit63.SettingsConfig;
|
|
1179
1105
|
};
|
|
1180
1106
|
"recommended-typescript-legacy": {
|
|
1181
1107
|
plugins: string[];
|
|
@@ -1186,7 +1112,7 @@ declare const plugins: {
|
|
|
1186
1112
|
name: string;
|
|
1187
1113
|
version: string;
|
|
1188
1114
|
};
|
|
1189
|
-
rules: Record<string,
|
|
1115
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
1190
1116
|
};
|
|
1191
1117
|
};
|
|
1192
1118
|
declare const settings: {
|
|
@@ -1210,74 +1136,74 @@ declare const _default: {
|
|
|
1210
1136
|
all: typeof all_d_exports;
|
|
1211
1137
|
"all-legacy": {
|
|
1212
1138
|
plugins: string[];
|
|
1213
|
-
rules: Record<string,
|
|
1139
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1214
1140
|
};
|
|
1215
1141
|
debug: typeof debug_d_exports;
|
|
1216
1142
|
"debug-legacy": {
|
|
1217
1143
|
plugins: string[];
|
|
1218
|
-
rules: Record<string,
|
|
1144
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1219
1145
|
};
|
|
1220
1146
|
"disable-conflict-eslint-plugin-react": typeof disable_conflict_eslint_plugin_react_d_exports;
|
|
1221
1147
|
"disable-conflict-eslint-plugin-react-legacy": {
|
|
1222
1148
|
plugins: string[];
|
|
1223
|
-
rules: Record<string,
|
|
1149
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1224
1150
|
};
|
|
1225
1151
|
"disable-debug": typeof disable_debug_d_exports;
|
|
1226
1152
|
"disable-debug-legacy": {
|
|
1227
1153
|
plugins: string[];
|
|
1228
|
-
rules: Record<string,
|
|
1154
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1229
1155
|
};
|
|
1230
1156
|
"disable-dom": typeof disable_dom_d_exports;
|
|
1231
1157
|
"disable-dom-legacy": {
|
|
1232
1158
|
plugins: string[];
|
|
1233
|
-
rules: Record<string,
|
|
1159
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1234
1160
|
};
|
|
1235
1161
|
"disable-type-checked": typeof disable_type_checked_d_exports;
|
|
1236
1162
|
"disable-type-checked-legacy": {
|
|
1237
1163
|
plugins: string[];
|
|
1238
|
-
rules: Record<string,
|
|
1164
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1239
1165
|
};
|
|
1240
1166
|
"disable-web-api": typeof disable_web_api_d_exports;
|
|
1241
1167
|
"disable-web-api-legacy": {
|
|
1242
1168
|
plugins: string[];
|
|
1243
|
-
rules: Record<string,
|
|
1169
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1244
1170
|
};
|
|
1245
1171
|
dom: typeof dom_d_exports;
|
|
1246
1172
|
"dom-legacy": {
|
|
1247
1173
|
plugins: string[];
|
|
1248
|
-
rules: Record<string,
|
|
1174
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1249
1175
|
};
|
|
1250
1176
|
off: typeof off_d_exports;
|
|
1251
1177
|
"off-legacy": {
|
|
1252
1178
|
plugins: string[];
|
|
1253
|
-
rules: Record<string,
|
|
1179
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1254
1180
|
};
|
|
1255
1181
|
recommended: typeof recommended_d_exports;
|
|
1256
1182
|
"recommended-legacy": {
|
|
1257
1183
|
plugins: string[];
|
|
1258
|
-
rules: Record<string,
|
|
1184
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1259
1185
|
};
|
|
1260
1186
|
"recommended-type-checked": typeof recommended_type_checked_d_exports;
|
|
1261
1187
|
"recommended-type-checked-legacy": {
|
|
1262
1188
|
plugins: string[];
|
|
1263
|
-
rules: Record<string,
|
|
1189
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1264
1190
|
};
|
|
1265
1191
|
"recommended-typescript": typeof recommended_typescript_d_exports;
|
|
1266
1192
|
"recommended-typescript-legacy": {
|
|
1267
1193
|
plugins: string[];
|
|
1268
|
-
rules: Record<string,
|
|
1194
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1269
1195
|
};
|
|
1270
1196
|
x: typeof x_d_exports;
|
|
1271
1197
|
"x-legacy": {
|
|
1272
1198
|
plugins: string[];
|
|
1273
|
-
rules: Record<string,
|
|
1199
|
+
rules: Record<string, _eslint_react_kit63.RuleConfig<unknown[]>> | undefined;
|
|
1274
1200
|
};
|
|
1275
1201
|
};
|
|
1276
1202
|
meta: {
|
|
1277
1203
|
name: string;
|
|
1278
1204
|
version: string;
|
|
1279
1205
|
};
|
|
1280
|
-
rules: Record<string,
|
|
1206
|
+
rules: Record<string, _eslint_react_kit63.CompatibleRule>;
|
|
1281
1207
|
};
|
|
1282
1208
|
//#endregion
|
|
1283
1209
|
export { _default as default };
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { DEFAULT_ESLINT_REACT_SETTINGS } from "@eslint-react/shared";
|
|
|
9
9
|
|
|
10
10
|
//#region package.json
|
|
11
11
|
var name = "@eslint-react/eslint-plugin";
|
|
12
|
-
var version = "2.0.0-next.
|
|
12
|
+
var version = "2.0.0-next.160";
|
|
13
13
|
|
|
14
14
|
//#endregion
|
|
15
15
|
//#region src/configs/dom.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/eslint-plugin",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.160",
|
|
4
4
|
"description": "A unified plugin that combines all individual plugins from the eslint-react monorepo into one.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
"@typescript-eslint/type-utils": "^8.41.0",
|
|
42
42
|
"@typescript-eslint/types": "^8.41.0",
|
|
43
43
|
"@typescript-eslint/utils": "^8.41.0",
|
|
44
|
-
"@eslint-react/eff": "2.0.0-next.
|
|
45
|
-
"eslint-
|
|
46
|
-
"@eslint-react/shared": "2.0.0-next.
|
|
47
|
-
"
|
|
48
|
-
"eslint-plugin-react-dom": "2.0.0-next.
|
|
49
|
-
"eslint-plugin-react-hooks-extra": "2.0.0-next.
|
|
50
|
-
"eslint-plugin-react-
|
|
51
|
-
"eslint-plugin-react-
|
|
52
|
-
"eslint-plugin-react-x": "2.0.0-next.
|
|
44
|
+
"@eslint-react/eff": "2.0.0-next.160",
|
|
45
|
+
"@eslint-react/kit": "2.0.0-next.160",
|
|
46
|
+
"@eslint-react/shared": "2.0.0-next.160",
|
|
47
|
+
"eslint-plugin-react-debug": "2.0.0-next.160",
|
|
48
|
+
"eslint-plugin-react-dom": "2.0.0-next.160",
|
|
49
|
+
"eslint-plugin-react-hooks-extra": "2.0.0-next.160",
|
|
50
|
+
"eslint-plugin-react-web-api": "2.0.0-next.160",
|
|
51
|
+
"eslint-plugin-react-naming-convention": "2.0.0-next.160",
|
|
52
|
+
"eslint-plugin-react-x": "2.0.0-next.160"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"tsdown": "^0.14.2",
|