@quentinhsu/biome-config 0.3.2 → 0.3.5

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 (34) hide show
  1. package/dist/build.mjs +388 -0
  2. package/dist/index.jsonc +153 -0
  3. package/dist/index.mjs +358 -0
  4. package/dist/next.jsonc +170 -0
  5. package/dist/nuxt.jsonc +225 -0
  6. package/dist/react.jsonc +168 -0
  7. package/dist/types/scripts/build-presets.d.ts +1 -0
  8. package/dist/types/scripts/generate-biome-types.d.ts +1 -0
  9. package/dist/types/scripts/utils/biome-version.d.ts +12 -0
  10. package/dist/types/src/build.d.ts +1 -0
  11. package/dist/types/src/constants/biome.d.ts +1 -0
  12. package/dist/types/src/generated/biome/index.d.ts +12 -0
  13. package/dist/types/src/generated/biome/linter-configuration.d.ts +181 -0
  14. package/dist/types/src/generated/biome/no-global-object-calls-options.d.ts +321 -0
  15. package/dist/types/src/generated/biome/no-label-var-options.d.ts +1076 -0
  16. package/dist/types/src/generated/biome/no-magic-numbers-options.d.ts +291 -0
  17. package/dist/types/src/generated/biome/rule-with-no-confusing-labels-options.d.ts +1236 -0
  18. package/dist/types/src/generated/biome/rule-with-no-excessive-nested-test-suites-options.d.ts +1440 -0
  19. package/dist/types/src/generated/biome/rule-with-no-unused-expressions-options.d.ts +1337 -0
  20. package/dist/types/src/generated/biome/schema.d.ts +291 -0
  21. package/dist/types/src/generated/biome/use-consistent-object-definitions-configuration.d.ts +1304 -0
  22. package/dist/types/src/generated/biome/use-focusable-interactive-configuration.d.ts +163 -0
  23. package/dist/types/src/generated/biome/use-qwik-classlist-configuration.d.ts +241 -0
  24. package/dist/types/src/generated/biome/use-shorthand-assign-configuration.d.ts +571 -0
  25. package/dist/types/src/index.d.ts +15 -0
  26. package/dist/types/src/presets/next.d.ts +1 -0
  27. package/dist/types/src/presets/nuxt.d.ts +1 -0
  28. package/dist/types/src/presets/react.d.ts +1 -0
  29. package/dist/types/src/presets/vue.d.ts +1 -0
  30. package/dist/types/src/source/index.d.ts +2 -0
  31. package/dist/types/src/types.d.ts +1 -0
  32. package/dist/types/src/utils/merge.d.ts +2 -0
  33. package/dist/vue.jsonc +177 -0
  34. package/package.json +29 -28
@@ -0,0 +1,1337 @@
1
+ import type { FixKind, RulePlainConfiguration } from './schema.ts';
2
+ import type { NoAccumulatingSpreadOptions, NoAwaitInLoopsOptions, NoBarrelFileOptions, NoBlankTargetOptions, NoCommonJsOptions, NoDangerouslySetInnerHtmlOptions, NoDangerouslySetInnerHtmlWithChildrenOptions, NoDefaultExportOptions, NoDeleteOptions, NoDescendingSpecificityOptions, NoDoneCallbackOptions, NoDynamicNamespaceImportAccessOptions, NoEnumOptions, NoExportedImportsOptions, NoGlobalEvalOptions, NoHeadElementOptions, NoImgElementOptions, NoImplicitBooleanOptions, NoInferrableTypesOptions, NoNamespaceImportOptions, NoReExportAllOptions, NoSecretsOptions, NoUnusedExpressionsOptions, NoUnwantedPolyfillioOptions, NoUselessCatchBindingOptions, NoUselessUndefinedOptions, NoVueDataObjectDeclarationOptions, NoVueDuplicateKeysOptions, NoVueReservedKeysOptions, NoVueReservedPropsOptions, UseArraySortCompareOptions, UseConsistentArrowReturnStyle, UseDeprecatedDateOptions, UseExhaustiveSwitchCasesOptions, UseExplicitTypeOptions, UseGoogleFontPreconnectOptions, UseMaxParamsOptions, UseQwikMethodUsageOptions, UseQwikValidLexicalScopeOptions, UseSolidForComponentOptions, UseSortedClassesOptions, UseTopLevelRegexOptions, UseVueDefineMacrosOrderOptions, UseVueMultiWordComponentNamesOptions } from './no-global-object-calls-options.ts';
3
+ import type { Accessibility, ConsistentArrayType, ConsistentTypeDefinition, CustomRestrictedTypeOptions, FilenameCase, Format, NoAlertOptions, NoApproximativeNumericConstantOptions, NoArrayIndexKeyOptions, NoAssignInExpressionsOptions, NoAsyncPromiseExecutorOptions, NoBiomeFirstExceptionOptions, NoBitwiseOperatorsOptions, NoCatchAssignOptions, NoClassAssignOptions, NoCommentTextOptions, NoCompareNegZeroOptions, NoMagicNumbersOptions, NoNamespaceOptions, NoNegationElseOptions, NoNestedTernaryOptions, NoNonNullAssertionOptions, NoParameterPropertiesOptions, NoProcessEnvOptions, NoRestrictedGlobalsOptions, NoShoutyConstantsOptions, NoSubstrOptions, NoUnusedTemplateLiteralOptions, NoUselessElseOptions, NoValueAtRuleOptions, NoYodaExpressionOptions, ObjectPropertySyntax, PathOptions, PropertyAssignmentMode, RestrictedModifier, Style2, UseArrayLiteralsOptions, UseAsConstAssertionOptions, UseAtIndexOptions, UseBlockStatementsOptions, UseCollapsedElseIfOptions, UseCollapsedIfOptions, UseComponentExportOnlyModulesOptions, UseConsistentBuiltinInstantiationOptions, UseConsistentCurlyBracesOptions, UseConstOptions, UseDefaultParameterLastOptions, UseDefaultSwitchClauseOptions, UseDeprecatedReasonOptions, UseEnumInitializersOptions, UseExplicitLengthCheckOptions, UseExponentiationOperatorOptions, UseExportTypeOptions, UseExportsLastOptions, UseForOfOptions, UseFragmentSyntaxOptions, UseGraphqlNamingConventionOptions, UseGroupedAccessorPairsOptions, UseLiteralEnumMembersOptions, UseNodeAssertStrictOptions, UseNodejsImportProtocolOptions, UseNumberNamespaceOptions, UseNumericSeparatorsOptions, UseObjectSpreadOptions, UseReactFunctionComponentsOptions, UseReadonlyClassPropertiesOptions, UseSelfClosingElementsOptions, UseShorthandAssignOptions, UseShorthandFunctionTypeOptions, UseSingleVarDeclaratorOptions, UseSymbolDescriptionOptions, UseTemplateOptions, UseThrowNewErrorOptions, UseThrowOnlyErrorOptions, UseTrimStartEndOptions, UseUnifiedTypeSignaturesOptions } from './no-magic-numbers-options.ts';
4
+ export interface RuleWithNoUnusedExpressionsOptions {
5
+ /**
6
+ * The severity of the emitted diagnostics by the rule
7
+ */
8
+ level: RulePlainConfiguration;
9
+ /**
10
+ * Rule's options
11
+ */
12
+ options?: NoUnusedExpressionsOptions;
13
+ }
14
+ export interface RuleWithNoUselessCatchBindingOptions {
15
+ /**
16
+ * The kind of the code actions emitted by the rule
17
+ */
18
+ fix?: FixKind | null;
19
+ /**
20
+ * The severity of the emitted diagnostics by the rule
21
+ */
22
+ level: RulePlainConfiguration;
23
+ /**
24
+ * Rule's options
25
+ */
26
+ options?: NoUselessCatchBindingOptions;
27
+ }
28
+ export interface RuleWithNoUselessUndefinedOptions {
29
+ /**
30
+ * The kind of the code actions emitted by the rule
31
+ */
32
+ fix?: FixKind | null;
33
+ /**
34
+ * The severity of the emitted diagnostics by the rule
35
+ */
36
+ level: RulePlainConfiguration;
37
+ /**
38
+ * Rule's options
39
+ */
40
+ options?: NoUselessUndefinedOptions;
41
+ }
42
+ export interface RuleWithNoVueDataObjectDeclarationOptions {
43
+ /**
44
+ * The kind of the code actions emitted by the rule
45
+ */
46
+ fix?: FixKind | null;
47
+ /**
48
+ * The severity of the emitted diagnostics by the rule
49
+ */
50
+ level: RulePlainConfiguration;
51
+ /**
52
+ * Rule's options
53
+ */
54
+ options?: NoVueDataObjectDeclarationOptions;
55
+ }
56
+ export interface RuleWithNoVueDuplicateKeysOptions {
57
+ /**
58
+ * The severity of the emitted diagnostics by the rule
59
+ */
60
+ level: RulePlainConfiguration;
61
+ /**
62
+ * Rule's options
63
+ */
64
+ options?: NoVueDuplicateKeysOptions;
65
+ }
66
+ export interface RuleWithNoVueReservedKeysOptions {
67
+ /**
68
+ * The severity of the emitted diagnostics by the rule
69
+ */
70
+ level: RulePlainConfiguration;
71
+ /**
72
+ * Rule's options
73
+ */
74
+ options?: NoVueReservedKeysOptions;
75
+ }
76
+ export interface RuleWithNoVueReservedPropsOptions {
77
+ /**
78
+ * The severity of the emitted diagnostics by the rule
79
+ */
80
+ level: RulePlainConfiguration;
81
+ /**
82
+ * Rule's options
83
+ */
84
+ options?: NoVueReservedPropsOptions;
85
+ }
86
+ export interface RuleWithUseArraySortCompareOptions {
87
+ /**
88
+ * The severity of the emitted diagnostics by the rule
89
+ */
90
+ level: RulePlainConfiguration;
91
+ /**
92
+ * Rule's options
93
+ */
94
+ options?: UseArraySortCompareOptions;
95
+ }
96
+ /**
97
+ * Options for the `useConsistentArrowReturn` rule.
98
+ */
99
+ export interface UseConsistentArrowReturnOptions {
100
+ /**
101
+ * Determines whether the rule enforces a consistent style when the return value is an object literal.
102
+ *
103
+ * This option is only applicable when used in conjunction with the `asNeeded` option.
104
+ */
105
+ requireForObjectLiteral?: boolean | null;
106
+ /**
107
+ * The style to enforce for arrow function return statements.
108
+ */
109
+ style?: UseConsistentArrowReturnStyle | null;
110
+ }
111
+ export interface RuleWithUseDeprecatedDateOptions {
112
+ /**
113
+ * The severity of the emitted diagnostics by the rule
114
+ */
115
+ level: RulePlainConfiguration;
116
+ /**
117
+ * Rule's options
118
+ */
119
+ options?: UseDeprecatedDateOptions;
120
+ }
121
+ export interface RuleWithUseExhaustiveSwitchCasesOptions {
122
+ /**
123
+ * The kind of the code actions emitted by the rule
124
+ */
125
+ fix?: FixKind | null;
126
+ /**
127
+ * The severity of the emitted diagnostics by the rule
128
+ */
129
+ level: RulePlainConfiguration;
130
+ /**
131
+ * Rule's options
132
+ */
133
+ options?: UseExhaustiveSwitchCasesOptions;
134
+ }
135
+ export interface RuleWithUseExplicitTypeOptions {
136
+ /**
137
+ * The severity of the emitted diagnostics by the rule
138
+ */
139
+ level: RulePlainConfiguration;
140
+ /**
141
+ * Rule's options
142
+ */
143
+ options?: UseExplicitTypeOptions;
144
+ }
145
+ export interface RuleWithUseMaxParamsOptions {
146
+ /**
147
+ * The severity of the emitted diagnostics by the rule
148
+ */
149
+ level: RulePlainConfiguration;
150
+ /**
151
+ * Rule's options
152
+ */
153
+ options?: UseMaxParamsOptions;
154
+ }
155
+ export interface RuleWithUseQwikMethodUsageOptions {
156
+ /**
157
+ * The severity of the emitted diagnostics by the rule
158
+ */
159
+ level: RulePlainConfiguration;
160
+ /**
161
+ * Rule's options
162
+ */
163
+ options?: UseQwikMethodUsageOptions;
164
+ }
165
+ export interface RuleWithUseQwikValidLexicalScopeOptions {
166
+ /**
167
+ * The severity of the emitted diagnostics by the rule
168
+ */
169
+ level: RulePlainConfiguration;
170
+ /**
171
+ * Rule's options
172
+ */
173
+ options?: UseQwikValidLexicalScopeOptions;
174
+ }
175
+ export interface RuleWithUseSortedClassesOptions {
176
+ /**
177
+ * The kind of the code actions emitted by the rule
178
+ */
179
+ fix?: FixKind | null;
180
+ /**
181
+ * The severity of the emitted diagnostics by the rule
182
+ */
183
+ level: RulePlainConfiguration;
184
+ /**
185
+ * Rule's options
186
+ */
187
+ options?: UseSortedClassesOptions;
188
+ }
189
+ export interface RuleWithUseVueDefineMacrosOrderOptions {
190
+ /**
191
+ * The kind of the code actions emitted by the rule
192
+ */
193
+ fix?: FixKind | null;
194
+ /**
195
+ * The severity of the emitted diagnostics by the rule
196
+ */
197
+ level: RulePlainConfiguration;
198
+ /**
199
+ * Rule's options
200
+ */
201
+ options?: UseVueDefineMacrosOrderOptions;
202
+ }
203
+ export interface RuleWithUseVueMultiWordComponentNamesOptions {
204
+ /**
205
+ * The severity of the emitted diagnostics by the rule
206
+ */
207
+ level: RulePlainConfiguration;
208
+ /**
209
+ * Rule's options
210
+ */
211
+ options?: UseVueMultiWordComponentNamesOptions;
212
+ }
213
+ export interface RuleWithNoAccumulatingSpreadOptions {
214
+ /**
215
+ * The severity of the emitted diagnostics by the rule
216
+ */
217
+ level: RulePlainConfiguration;
218
+ /**
219
+ * Rule's options
220
+ */
221
+ options?: NoAccumulatingSpreadOptions;
222
+ }
223
+ export interface RuleWithNoAwaitInLoopsOptions {
224
+ /**
225
+ * The severity of the emitted diagnostics by the rule
226
+ */
227
+ level: RulePlainConfiguration;
228
+ /**
229
+ * Rule's options
230
+ */
231
+ options?: NoAwaitInLoopsOptions;
232
+ }
233
+ export interface RuleWithNoBarrelFileOptions {
234
+ /**
235
+ * The severity of the emitted diagnostics by the rule
236
+ */
237
+ level: RulePlainConfiguration;
238
+ /**
239
+ * Rule's options
240
+ */
241
+ options?: NoBarrelFileOptions;
242
+ }
243
+ export interface RuleWithNoDeleteOptions {
244
+ /**
245
+ * The kind of the code actions emitted by the rule
246
+ */
247
+ fix?: FixKind | null;
248
+ /**
249
+ * The severity of the emitted diagnostics by the rule
250
+ */
251
+ level: RulePlainConfiguration;
252
+ /**
253
+ * Rule's options
254
+ */
255
+ options?: NoDeleteOptions;
256
+ }
257
+ export interface RuleWithNoDynamicNamespaceImportAccessOptions {
258
+ /**
259
+ * The severity of the emitted diagnostics by the rule
260
+ */
261
+ level: RulePlainConfiguration;
262
+ /**
263
+ * Rule's options
264
+ */
265
+ options?: NoDynamicNamespaceImportAccessOptions;
266
+ }
267
+ export interface RuleWithNoImgElementOptions {
268
+ /**
269
+ * The severity of the emitted diagnostics by the rule
270
+ */
271
+ level: RulePlainConfiguration;
272
+ /**
273
+ * Rule's options
274
+ */
275
+ options?: NoImgElementOptions;
276
+ }
277
+ export interface RuleWithNoNamespaceImportOptions {
278
+ /**
279
+ * The severity of the emitted diagnostics by the rule
280
+ */
281
+ level: RulePlainConfiguration;
282
+ /**
283
+ * Rule's options
284
+ */
285
+ options?: NoNamespaceImportOptions;
286
+ }
287
+ export interface RuleWithNoReExportAllOptions {
288
+ /**
289
+ * The severity of the emitted diagnostics by the rule
290
+ */
291
+ level: RulePlainConfiguration;
292
+ /**
293
+ * Rule's options
294
+ */
295
+ options?: NoReExportAllOptions;
296
+ }
297
+ export interface RuleWithNoUnwantedPolyfillioOptions {
298
+ /**
299
+ * The severity of the emitted diagnostics by the rule
300
+ */
301
+ level: RulePlainConfiguration;
302
+ /**
303
+ * Rule's options
304
+ */
305
+ options?: NoUnwantedPolyfillioOptions;
306
+ }
307
+ export interface RuleWithUseGoogleFontPreconnectOptions {
308
+ /**
309
+ * The kind of the code actions emitted by the rule
310
+ */
311
+ fix?: FixKind | null;
312
+ /**
313
+ * The severity of the emitted diagnostics by the rule
314
+ */
315
+ level: RulePlainConfiguration;
316
+ /**
317
+ * Rule's options
318
+ */
319
+ options?: UseGoogleFontPreconnectOptions;
320
+ }
321
+ export interface RuleWithUseSolidForComponentOptions {
322
+ /**
323
+ * The severity of the emitted diagnostics by the rule
324
+ */
325
+ level: RulePlainConfiguration;
326
+ /**
327
+ * Rule's options
328
+ */
329
+ options?: UseSolidForComponentOptions;
330
+ }
331
+ export interface RuleWithUseTopLevelRegexOptions {
332
+ /**
333
+ * The severity of the emitted diagnostics by the rule
334
+ */
335
+ level: RulePlainConfiguration;
336
+ /**
337
+ * Rule's options
338
+ */
339
+ options?: UseTopLevelRegexOptions;
340
+ }
341
+ export interface RuleWithNoBlankTargetOptions {
342
+ /**
343
+ * The kind of the code actions emitted by the rule
344
+ */
345
+ fix?: FixKind | null;
346
+ /**
347
+ * The severity of the emitted diagnostics by the rule
348
+ */
349
+ level: RulePlainConfiguration;
350
+ /**
351
+ * Rule's options
352
+ */
353
+ options?: NoBlankTargetOptions;
354
+ }
355
+ export interface RuleWithNoDangerouslySetInnerHtmlOptions {
356
+ /**
357
+ * The severity of the emitted diagnostics by the rule
358
+ */
359
+ level: RulePlainConfiguration;
360
+ /**
361
+ * Rule's options
362
+ */
363
+ options?: NoDangerouslySetInnerHtmlOptions;
364
+ }
365
+ export interface RuleWithNoDangerouslySetInnerHtmlWithChildrenOptions {
366
+ /**
367
+ * The severity of the emitted diagnostics by the rule
368
+ */
369
+ level: RulePlainConfiguration;
370
+ /**
371
+ * Rule's options
372
+ */
373
+ options?: NoDangerouslySetInnerHtmlWithChildrenOptions;
374
+ }
375
+ export interface RuleWithNoGlobalEvalOptions {
376
+ /**
377
+ * The severity of the emitted diagnostics by the rule
378
+ */
379
+ level: RulePlainConfiguration;
380
+ /**
381
+ * Rule's options
382
+ */
383
+ options?: NoGlobalEvalOptions;
384
+ }
385
+ export interface RuleWithNoSecretsOptions {
386
+ /**
387
+ * The severity of the emitted diagnostics by the rule
388
+ */
389
+ level: RulePlainConfiguration;
390
+ /**
391
+ * Rule's options
392
+ */
393
+ options?: NoSecretsOptions;
394
+ }
395
+ export interface RuleWithNoCommonJsOptions {
396
+ /**
397
+ * The severity of the emitted diagnostics by the rule
398
+ */
399
+ level: RulePlainConfiguration;
400
+ /**
401
+ * Rule's options
402
+ */
403
+ options?: NoCommonJsOptions;
404
+ }
405
+ export interface RuleWithNoDefaultExportOptions {
406
+ /**
407
+ * The severity of the emitted diagnostics by the rule
408
+ */
409
+ level: RulePlainConfiguration;
410
+ /**
411
+ * Rule's options
412
+ */
413
+ options?: NoDefaultExportOptions;
414
+ }
415
+ export interface RuleWithNoDescendingSpecificityOptions {
416
+ /**
417
+ * The severity of the emitted diagnostics by the rule
418
+ */
419
+ level: RulePlainConfiguration;
420
+ /**
421
+ * Rule's options
422
+ */
423
+ options?: NoDescendingSpecificityOptions;
424
+ }
425
+ export interface RuleWithNoDoneCallbackOptions {
426
+ /**
427
+ * The severity of the emitted diagnostics by the rule
428
+ */
429
+ level: RulePlainConfiguration;
430
+ /**
431
+ * Rule's options
432
+ */
433
+ options?: NoDoneCallbackOptions;
434
+ }
435
+ export interface RuleWithNoEnumOptions {
436
+ /**
437
+ * The severity of the emitted diagnostics by the rule
438
+ */
439
+ level: RulePlainConfiguration;
440
+ /**
441
+ * Rule's options
442
+ */
443
+ options?: NoEnumOptions;
444
+ }
445
+ export interface RuleWithNoExportedImportsOptions {
446
+ /**
447
+ * The severity of the emitted diagnostics by the rule
448
+ */
449
+ level: RulePlainConfiguration;
450
+ /**
451
+ * Rule's options
452
+ */
453
+ options?: NoExportedImportsOptions;
454
+ }
455
+ export interface RuleWithNoHeadElementOptions {
456
+ /**
457
+ * The severity of the emitted diagnostics by the rule
458
+ */
459
+ level: RulePlainConfiguration;
460
+ /**
461
+ * Rule's options
462
+ */
463
+ options?: NoHeadElementOptions;
464
+ }
465
+ export interface RuleWithNoImplicitBooleanOptions {
466
+ /**
467
+ * The kind of the code actions emitted by the rule
468
+ */
469
+ fix?: FixKind | null;
470
+ /**
471
+ * The severity of the emitted diagnostics by the rule
472
+ */
473
+ level: RulePlainConfiguration;
474
+ /**
475
+ * Rule's options
476
+ */
477
+ options?: NoImplicitBooleanOptions;
478
+ }
479
+ export interface RuleWithNoInferrableTypesOptions {
480
+ /**
481
+ * The kind of the code actions emitted by the rule
482
+ */
483
+ fix?: FixKind | null;
484
+ /**
485
+ * The severity of the emitted diagnostics by the rule
486
+ */
487
+ level: RulePlainConfiguration;
488
+ /**
489
+ * Rule's options
490
+ */
491
+ options?: NoInferrableTypesOptions;
492
+ }
493
+ export interface RuleWithNoMagicNumbersOptions {
494
+ /**
495
+ * The severity of the emitted diagnostics by the rule
496
+ */
497
+ level: RulePlainConfiguration;
498
+ /**
499
+ * Rule's options
500
+ */
501
+ options?: NoMagicNumbersOptions;
502
+ }
503
+ export interface RuleWithNoNamespaceOptions {
504
+ /**
505
+ * The severity of the emitted diagnostics by the rule
506
+ */
507
+ level: RulePlainConfiguration;
508
+ /**
509
+ * Rule's options
510
+ */
511
+ options?: NoNamespaceOptions;
512
+ }
513
+ export interface RuleWithNoNegationElseOptions {
514
+ /**
515
+ * The kind of the code actions emitted by the rule
516
+ */
517
+ fix?: FixKind | null;
518
+ /**
519
+ * The severity of the emitted diagnostics by the rule
520
+ */
521
+ level: RulePlainConfiguration;
522
+ /**
523
+ * Rule's options
524
+ */
525
+ options?: NoNegationElseOptions;
526
+ }
527
+ export interface RuleWithNoNestedTernaryOptions {
528
+ /**
529
+ * The severity of the emitted diagnostics by the rule
530
+ */
531
+ level: RulePlainConfiguration;
532
+ /**
533
+ * Rule's options
534
+ */
535
+ options?: NoNestedTernaryOptions;
536
+ }
537
+ export interface RuleWithNoNonNullAssertionOptions {
538
+ /**
539
+ * The kind of the code actions emitted by the rule
540
+ */
541
+ fix?: FixKind | null;
542
+ /**
543
+ * The severity of the emitted diagnostics by the rule
544
+ */
545
+ level: RulePlainConfiguration;
546
+ /**
547
+ * Rule's options
548
+ */
549
+ options?: NoNonNullAssertionOptions;
550
+ }
551
+ export interface NoParameterAssignOptions {
552
+ /**
553
+ * Whether to report an error when a dependency is listed in the dependencies array but isn't used. Defaults to `allow`.
554
+ */
555
+ propertyAssignment?: PropertyAssignmentMode | null;
556
+ }
557
+ export interface RuleWithNoParameterPropertiesOptions {
558
+ /**
559
+ * The severity of the emitted diagnostics by the rule
560
+ */
561
+ level: RulePlainConfiguration;
562
+ /**
563
+ * Rule's options
564
+ */
565
+ options?: NoParameterPropertiesOptions;
566
+ }
567
+ export interface RuleWithNoProcessEnvOptions {
568
+ /**
569
+ * The severity of the emitted diagnostics by the rule
570
+ */
571
+ level: RulePlainConfiguration;
572
+ /**
573
+ * Rule's options
574
+ */
575
+ options?: NoProcessEnvOptions;
576
+ }
577
+ export interface RuleWithNoRestrictedGlobalsOptions {
578
+ /**
579
+ * The severity of the emitted diagnostics by the rule
580
+ */
581
+ level: RulePlainConfiguration;
582
+ /**
583
+ * Rule's options
584
+ */
585
+ options?: NoRestrictedGlobalsOptions;
586
+ }
587
+ export type Paths = string | PathOptions;
588
+ export type CustomRestrictedType = string | CustomRestrictedTypeOptions;
589
+ export interface RuleWithNoShoutyConstantsOptions {
590
+ /**
591
+ * The kind of the code actions emitted by the rule
592
+ */
593
+ fix?: FixKind | null;
594
+ /**
595
+ * The severity of the emitted diagnostics by the rule
596
+ */
597
+ level: RulePlainConfiguration;
598
+ /**
599
+ * Rule's options
600
+ */
601
+ options?: NoShoutyConstantsOptions;
602
+ }
603
+ export interface RuleWithNoSubstrOptions {
604
+ /**
605
+ * The kind of the code actions emitted by the rule
606
+ */
607
+ fix?: FixKind | null;
608
+ /**
609
+ * The severity of the emitted diagnostics by the rule
610
+ */
611
+ level: RulePlainConfiguration;
612
+ /**
613
+ * Rule's options
614
+ */
615
+ options?: NoSubstrOptions;
616
+ }
617
+ export interface RuleWithNoUnusedTemplateLiteralOptions {
618
+ /**
619
+ * The kind of the code actions emitted by the rule
620
+ */
621
+ fix?: FixKind | null;
622
+ /**
623
+ * The severity of the emitted diagnostics by the rule
624
+ */
625
+ level: RulePlainConfiguration;
626
+ /**
627
+ * Rule's options
628
+ */
629
+ options?: NoUnusedTemplateLiteralOptions;
630
+ }
631
+ export interface RuleWithNoUselessElseOptions {
632
+ /**
633
+ * The kind of the code actions emitted by the rule
634
+ */
635
+ fix?: FixKind | null;
636
+ /**
637
+ * The severity of the emitted diagnostics by the rule
638
+ */
639
+ level: RulePlainConfiguration;
640
+ /**
641
+ * Rule's options
642
+ */
643
+ options?: NoUselessElseOptions;
644
+ }
645
+ export interface RuleWithNoValueAtRuleOptions {
646
+ /**
647
+ * The severity of the emitted diagnostics by the rule
648
+ */
649
+ level: RulePlainConfiguration;
650
+ /**
651
+ * Rule's options
652
+ */
653
+ options?: NoValueAtRuleOptions;
654
+ }
655
+ export interface RuleWithNoYodaExpressionOptions {
656
+ /**
657
+ * The kind of the code actions emitted by the rule
658
+ */
659
+ fix?: FixKind | null;
660
+ /**
661
+ * The severity of the emitted diagnostics by the rule
662
+ */
663
+ level: RulePlainConfiguration;
664
+ /**
665
+ * Rule's options
666
+ */
667
+ options?: NoYodaExpressionOptions;
668
+ }
669
+ export interface RuleWithUseArrayLiteralsOptions {
670
+ /**
671
+ * The kind of the code actions emitted by the rule
672
+ */
673
+ fix?: FixKind | null;
674
+ /**
675
+ * The severity of the emitted diagnostics by the rule
676
+ */
677
+ level: RulePlainConfiguration;
678
+ /**
679
+ * Rule's options
680
+ */
681
+ options?: UseArrayLiteralsOptions;
682
+ }
683
+ export interface RuleWithUseAsConstAssertionOptions {
684
+ /**
685
+ * The kind of the code actions emitted by the rule
686
+ */
687
+ fix?: FixKind | null;
688
+ /**
689
+ * The severity of the emitted diagnostics by the rule
690
+ */
691
+ level: RulePlainConfiguration;
692
+ /**
693
+ * Rule's options
694
+ */
695
+ options?: UseAsConstAssertionOptions;
696
+ }
697
+ export interface RuleWithUseAtIndexOptions {
698
+ /**
699
+ * The kind of the code actions emitted by the rule
700
+ */
701
+ fix?: FixKind | null;
702
+ /**
703
+ * The severity of the emitted diagnostics by the rule
704
+ */
705
+ level: RulePlainConfiguration;
706
+ /**
707
+ * Rule's options
708
+ */
709
+ options?: UseAtIndexOptions;
710
+ }
711
+ export interface RuleWithUseBlockStatementsOptions {
712
+ /**
713
+ * The kind of the code actions emitted by the rule
714
+ */
715
+ fix?: FixKind | null;
716
+ /**
717
+ * The severity of the emitted diagnostics by the rule
718
+ */
719
+ level: RulePlainConfiguration;
720
+ /**
721
+ * Rule's options
722
+ */
723
+ options?: UseBlockStatementsOptions;
724
+ }
725
+ export interface RuleWithUseCollapsedElseIfOptions {
726
+ /**
727
+ * The kind of the code actions emitted by the rule
728
+ */
729
+ fix?: FixKind | null;
730
+ /**
731
+ * The severity of the emitted diagnostics by the rule
732
+ */
733
+ level: RulePlainConfiguration;
734
+ /**
735
+ * Rule's options
736
+ */
737
+ options?: UseCollapsedElseIfOptions;
738
+ }
739
+ export interface RuleWithUseCollapsedIfOptions {
740
+ /**
741
+ * The kind of the code actions emitted by the rule
742
+ */
743
+ fix?: FixKind | null;
744
+ /**
745
+ * The severity of the emitted diagnostics by the rule
746
+ */
747
+ level: RulePlainConfiguration;
748
+ /**
749
+ * Rule's options
750
+ */
751
+ options?: UseCollapsedIfOptions;
752
+ }
753
+ export interface RuleWithUseComponentExportOnlyModulesOptions {
754
+ /**
755
+ * The severity of the emitted diagnostics by the rule
756
+ */
757
+ level: RulePlainConfiguration;
758
+ /**
759
+ * Rule's options
760
+ */
761
+ options?: UseComponentExportOnlyModulesOptions;
762
+ }
763
+ export interface UseConsistentArrayTypeOptions {
764
+ syntax?: ConsistentArrayType | null;
765
+ }
766
+ export interface RuleWithUseConsistentBuiltinInstantiationOptions {
767
+ /**
768
+ * The kind of the code actions emitted by the rule
769
+ */
770
+ fix?: FixKind | null;
771
+ /**
772
+ * The severity of the emitted diagnostics by the rule
773
+ */
774
+ level: RulePlainConfiguration;
775
+ /**
776
+ * Rule's options
777
+ */
778
+ options?: UseConsistentBuiltinInstantiationOptions;
779
+ }
780
+ export interface RuleWithUseConsistentCurlyBracesOptions {
781
+ /**
782
+ * The kind of the code actions emitted by the rule
783
+ */
784
+ fix?: FixKind | null;
785
+ /**
786
+ * The severity of the emitted diagnostics by the rule
787
+ */
788
+ level: RulePlainConfiguration;
789
+ /**
790
+ * Rule's options
791
+ */
792
+ options?: UseConsistentCurlyBracesOptions;
793
+ }
794
+ export interface UseConsistentMemberAccessibilityOptions {
795
+ /**
796
+ * The kind of accessibility you want to enforce. Default to "noPublic"
797
+ */
798
+ accessibility?: Accessibility | null;
799
+ }
800
+ export interface UseConsistentObjectDefinitionsOptions {
801
+ /**
802
+ * The preferred syntax to enforce.
803
+ */
804
+ syntax?: ObjectPropertySyntax | null;
805
+ }
806
+ export interface UseConsistentTypeDefinitionsOptions {
807
+ style?: ConsistentTypeDefinition | null;
808
+ }
809
+ export interface RuleWithUseConstOptions {
810
+ /**
811
+ * The kind of the code actions emitted by the rule
812
+ */
813
+ fix?: FixKind | null;
814
+ /**
815
+ * The severity of the emitted diagnostics by the rule
816
+ */
817
+ level: RulePlainConfiguration;
818
+ /**
819
+ * Rule's options
820
+ */
821
+ options?: UseConstOptions;
822
+ }
823
+ export interface RuleWithUseDefaultParameterLastOptions {
824
+ /**
825
+ * The kind of the code actions emitted by the rule
826
+ */
827
+ fix?: FixKind | null;
828
+ /**
829
+ * The severity of the emitted diagnostics by the rule
830
+ */
831
+ level: RulePlainConfiguration;
832
+ /**
833
+ * Rule's options
834
+ */
835
+ options?: UseDefaultParameterLastOptions;
836
+ }
837
+ export interface RuleWithUseDefaultSwitchClauseOptions {
838
+ /**
839
+ * The severity of the emitted diagnostics by the rule
840
+ */
841
+ level: RulePlainConfiguration;
842
+ /**
843
+ * Rule's options
844
+ */
845
+ options?: UseDefaultSwitchClauseOptions;
846
+ }
847
+ export interface RuleWithUseDeprecatedReasonOptions {
848
+ /**
849
+ * The severity of the emitted diagnostics by the rule
850
+ */
851
+ level: RulePlainConfiguration;
852
+ /**
853
+ * Rule's options
854
+ */
855
+ options?: UseDeprecatedReasonOptions;
856
+ }
857
+ export interface RuleWithUseEnumInitializersOptions {
858
+ /**
859
+ * The kind of the code actions emitted by the rule
860
+ */
861
+ fix?: FixKind | null;
862
+ /**
863
+ * The severity of the emitted diagnostics by the rule
864
+ */
865
+ level: RulePlainConfiguration;
866
+ /**
867
+ * Rule's options
868
+ */
869
+ options?: UseEnumInitializersOptions;
870
+ }
871
+ export interface RuleWithUseExplicitLengthCheckOptions {
872
+ /**
873
+ * The kind of the code actions emitted by the rule
874
+ */
875
+ fix?: FixKind | null;
876
+ /**
877
+ * The severity of the emitted diagnostics by the rule
878
+ */
879
+ level: RulePlainConfiguration;
880
+ /**
881
+ * Rule's options
882
+ */
883
+ options?: UseExplicitLengthCheckOptions;
884
+ }
885
+ export interface RuleWithUseExponentiationOperatorOptions {
886
+ /**
887
+ * The kind of the code actions emitted by the rule
888
+ */
889
+ fix?: FixKind | null;
890
+ /**
891
+ * The severity of the emitted diagnostics by the rule
892
+ */
893
+ level: RulePlainConfiguration;
894
+ /**
895
+ * Rule's options
896
+ */
897
+ options?: UseExponentiationOperatorOptions;
898
+ }
899
+ export interface RuleWithUseExportTypeOptions {
900
+ /**
901
+ * The kind of the code actions emitted by the rule
902
+ */
903
+ fix?: FixKind | null;
904
+ /**
905
+ * The severity of the emitted diagnostics by the rule
906
+ */
907
+ level: RulePlainConfiguration;
908
+ /**
909
+ * Rule's options
910
+ */
911
+ options?: UseExportTypeOptions;
912
+ }
913
+ export interface RuleWithUseExportsLastOptions {
914
+ /**
915
+ * The severity of the emitted diagnostics by the rule
916
+ */
917
+ level: RulePlainConfiguration;
918
+ /**
919
+ * Rule's options
920
+ */
921
+ options?: UseExportsLastOptions;
922
+ }
923
+ export type FilenameCases = FilenameCase[];
924
+ export interface RuleWithUseForOfOptions {
925
+ /**
926
+ * The severity of the emitted diagnostics by the rule
927
+ */
928
+ level: RulePlainConfiguration;
929
+ /**
930
+ * Rule's options
931
+ */
932
+ options?: UseForOfOptions;
933
+ }
934
+ export interface RuleWithUseFragmentSyntaxOptions {
935
+ /**
936
+ * The kind of the code actions emitted by the rule
937
+ */
938
+ fix?: FixKind | null;
939
+ /**
940
+ * The severity of the emitted diagnostics by the rule
941
+ */
942
+ level: RulePlainConfiguration;
943
+ /**
944
+ * Rule's options
945
+ */
946
+ options?: UseFragmentSyntaxOptions;
947
+ }
948
+ export interface RuleWithUseGraphqlNamingConventionOptions {
949
+ /**
950
+ * The severity of the emitted diagnostics by the rule
951
+ */
952
+ level: RulePlainConfiguration;
953
+ /**
954
+ * Rule's options
955
+ */
956
+ options?: UseGraphqlNamingConventionOptions;
957
+ }
958
+ export interface RuleWithUseGroupedAccessorPairsOptions {
959
+ /**
960
+ * The severity of the emitted diagnostics by the rule
961
+ */
962
+ level: RulePlainConfiguration;
963
+ /**
964
+ * Rule's options
965
+ */
966
+ options?: UseGroupedAccessorPairsOptions;
967
+ }
968
+ export interface UseImportTypeOptions {
969
+ /**
970
+ * The style to apply when import types. Default to "auto"
971
+ */
972
+ style?: Style2 | null;
973
+ }
974
+ export interface RuleWithUseLiteralEnumMembersOptions {
975
+ /**
976
+ * The severity of the emitted diagnostics by the rule
977
+ */
978
+ level: RulePlainConfiguration;
979
+ /**
980
+ * Rule's options
981
+ */
982
+ options?: UseLiteralEnumMembersOptions;
983
+ }
984
+ export type Formats = Format[];
985
+ export type Modifiers = RestrictedModifier[];
986
+ export interface RuleWithUseNodeAssertStrictOptions {
987
+ /**
988
+ * The kind of the code actions emitted by the rule
989
+ */
990
+ fix?: FixKind | null;
991
+ /**
992
+ * The severity of the emitted diagnostics by the rule
993
+ */
994
+ level: RulePlainConfiguration;
995
+ /**
996
+ * Rule's options
997
+ */
998
+ options?: UseNodeAssertStrictOptions;
999
+ }
1000
+ export interface RuleWithUseNodejsImportProtocolOptions {
1001
+ /**
1002
+ * The kind of the code actions emitted by the rule
1003
+ */
1004
+ fix?: FixKind | null;
1005
+ /**
1006
+ * The severity of the emitted diagnostics by the rule
1007
+ */
1008
+ level: RulePlainConfiguration;
1009
+ /**
1010
+ * Rule's options
1011
+ */
1012
+ options?: UseNodejsImportProtocolOptions;
1013
+ }
1014
+ export interface RuleWithUseNumberNamespaceOptions {
1015
+ /**
1016
+ * The kind of the code actions emitted by the rule
1017
+ */
1018
+ fix?: FixKind | null;
1019
+ /**
1020
+ * The severity of the emitted diagnostics by the rule
1021
+ */
1022
+ level: RulePlainConfiguration;
1023
+ /**
1024
+ * Rule's options
1025
+ */
1026
+ options?: UseNumberNamespaceOptions;
1027
+ }
1028
+ export interface RuleWithUseNumericSeparatorsOptions {
1029
+ /**
1030
+ * The kind of the code actions emitted by the rule
1031
+ */
1032
+ fix?: FixKind | null;
1033
+ /**
1034
+ * The severity of the emitted diagnostics by the rule
1035
+ */
1036
+ level: RulePlainConfiguration;
1037
+ /**
1038
+ * Rule's options
1039
+ */
1040
+ options?: UseNumericSeparatorsOptions;
1041
+ }
1042
+ export interface RuleWithUseObjectSpreadOptions {
1043
+ /**
1044
+ * The kind of the code actions emitted by the rule
1045
+ */
1046
+ fix?: FixKind | null;
1047
+ /**
1048
+ * The severity of the emitted diagnostics by the rule
1049
+ */
1050
+ level: RulePlainConfiguration;
1051
+ /**
1052
+ * Rule's options
1053
+ */
1054
+ options?: UseObjectSpreadOptions;
1055
+ }
1056
+ export interface RuleWithUseReactFunctionComponentsOptions {
1057
+ /**
1058
+ * The severity of the emitted diagnostics by the rule
1059
+ */
1060
+ level: RulePlainConfiguration;
1061
+ /**
1062
+ * Rule's options
1063
+ */
1064
+ options?: UseReactFunctionComponentsOptions;
1065
+ }
1066
+ export interface RuleWithUseReadonlyClassPropertiesOptions {
1067
+ /**
1068
+ * The kind of the code actions emitted by the rule
1069
+ */
1070
+ fix?: FixKind | null;
1071
+ /**
1072
+ * The severity of the emitted diagnostics by the rule
1073
+ */
1074
+ level: RulePlainConfiguration;
1075
+ /**
1076
+ * Rule's options
1077
+ */
1078
+ options?: UseReadonlyClassPropertiesOptions;
1079
+ }
1080
+ export interface RuleWithUseSelfClosingElementsOptions {
1081
+ /**
1082
+ * The kind of the code actions emitted by the rule
1083
+ */
1084
+ fix?: FixKind | null;
1085
+ /**
1086
+ * The severity of the emitted diagnostics by the rule
1087
+ */
1088
+ level: RulePlainConfiguration;
1089
+ /**
1090
+ * Rule's options
1091
+ */
1092
+ options?: UseSelfClosingElementsOptions;
1093
+ }
1094
+ export interface RuleWithUseShorthandAssignOptions {
1095
+ /**
1096
+ * The kind of the code actions emitted by the rule
1097
+ */
1098
+ fix?: FixKind | null;
1099
+ /**
1100
+ * The severity of the emitted diagnostics by the rule
1101
+ */
1102
+ level: RulePlainConfiguration;
1103
+ /**
1104
+ * Rule's options
1105
+ */
1106
+ options?: UseShorthandAssignOptions;
1107
+ }
1108
+ export interface RuleWithUseShorthandFunctionTypeOptions {
1109
+ /**
1110
+ * The kind of the code actions emitted by the rule
1111
+ */
1112
+ fix?: FixKind | null;
1113
+ /**
1114
+ * The severity of the emitted diagnostics by the rule
1115
+ */
1116
+ level: RulePlainConfiguration;
1117
+ /**
1118
+ * Rule's options
1119
+ */
1120
+ options?: UseShorthandFunctionTypeOptions;
1121
+ }
1122
+ export interface RuleWithUseSingleVarDeclaratorOptions {
1123
+ /**
1124
+ * The kind of the code actions emitted by the rule
1125
+ */
1126
+ fix?: FixKind | null;
1127
+ /**
1128
+ * The severity of the emitted diagnostics by the rule
1129
+ */
1130
+ level: RulePlainConfiguration;
1131
+ /**
1132
+ * Rule's options
1133
+ */
1134
+ options?: UseSingleVarDeclaratorOptions;
1135
+ }
1136
+ export interface RuleWithUseSymbolDescriptionOptions {
1137
+ /**
1138
+ * The severity of the emitted diagnostics by the rule
1139
+ */
1140
+ level: RulePlainConfiguration;
1141
+ /**
1142
+ * Rule's options
1143
+ */
1144
+ options?: UseSymbolDescriptionOptions;
1145
+ }
1146
+ export interface RuleWithUseTemplateOptions {
1147
+ /**
1148
+ * The kind of the code actions emitted by the rule
1149
+ */
1150
+ fix?: FixKind | null;
1151
+ /**
1152
+ * The severity of the emitted diagnostics by the rule
1153
+ */
1154
+ level: RulePlainConfiguration;
1155
+ /**
1156
+ * Rule's options
1157
+ */
1158
+ options?: UseTemplateOptions;
1159
+ }
1160
+ export interface RuleWithUseThrowNewErrorOptions {
1161
+ /**
1162
+ * The kind of the code actions emitted by the rule
1163
+ */
1164
+ fix?: FixKind | null;
1165
+ /**
1166
+ * The severity of the emitted diagnostics by the rule
1167
+ */
1168
+ level: RulePlainConfiguration;
1169
+ /**
1170
+ * Rule's options
1171
+ */
1172
+ options?: UseThrowNewErrorOptions;
1173
+ }
1174
+ export interface RuleWithUseThrowOnlyErrorOptions {
1175
+ /**
1176
+ * The severity of the emitted diagnostics by the rule
1177
+ */
1178
+ level: RulePlainConfiguration;
1179
+ /**
1180
+ * Rule's options
1181
+ */
1182
+ options?: UseThrowOnlyErrorOptions;
1183
+ }
1184
+ export interface RuleWithUseTrimStartEndOptions {
1185
+ /**
1186
+ * The kind of the code actions emitted by the rule
1187
+ */
1188
+ fix?: FixKind | null;
1189
+ /**
1190
+ * The severity of the emitted diagnostics by the rule
1191
+ */
1192
+ level: RulePlainConfiguration;
1193
+ /**
1194
+ * Rule's options
1195
+ */
1196
+ options?: UseTrimStartEndOptions;
1197
+ }
1198
+ export interface RuleWithUseUnifiedTypeSignaturesOptions {
1199
+ /**
1200
+ * The kind of the code actions emitted by the rule
1201
+ */
1202
+ fix?: FixKind | null;
1203
+ /**
1204
+ * The severity of the emitted diagnostics by the rule
1205
+ */
1206
+ level: RulePlainConfiguration;
1207
+ /**
1208
+ * Rule's options
1209
+ */
1210
+ options?: UseUnifiedTypeSignaturesOptions;
1211
+ }
1212
+ export interface RuleWithNoAlertOptions {
1213
+ /**
1214
+ * The severity of the emitted diagnostics by the rule
1215
+ */
1216
+ level: RulePlainConfiguration;
1217
+ /**
1218
+ * Rule's options
1219
+ */
1220
+ options?: NoAlertOptions;
1221
+ }
1222
+ export interface RuleWithNoApproximativeNumericConstantOptions {
1223
+ /**
1224
+ * The kind of the code actions emitted by the rule
1225
+ */
1226
+ fix?: FixKind | null;
1227
+ /**
1228
+ * The severity of the emitted diagnostics by the rule
1229
+ */
1230
+ level: RulePlainConfiguration;
1231
+ /**
1232
+ * Rule's options
1233
+ */
1234
+ options?: NoApproximativeNumericConstantOptions;
1235
+ }
1236
+ export interface RuleWithNoArrayIndexKeyOptions {
1237
+ /**
1238
+ * The severity of the emitted diagnostics by the rule
1239
+ */
1240
+ level: RulePlainConfiguration;
1241
+ /**
1242
+ * Rule's options
1243
+ */
1244
+ options?: NoArrayIndexKeyOptions;
1245
+ }
1246
+ export interface RuleWithNoAssignInExpressionsOptions {
1247
+ /**
1248
+ * The severity of the emitted diagnostics by the rule
1249
+ */
1250
+ level: RulePlainConfiguration;
1251
+ /**
1252
+ * Rule's options
1253
+ */
1254
+ options?: NoAssignInExpressionsOptions;
1255
+ }
1256
+ export interface RuleWithNoAsyncPromiseExecutorOptions {
1257
+ /**
1258
+ * The severity of the emitted diagnostics by the rule
1259
+ */
1260
+ level: RulePlainConfiguration;
1261
+ /**
1262
+ * Rule's options
1263
+ */
1264
+ options?: NoAsyncPromiseExecutorOptions;
1265
+ }
1266
+ export interface RuleWithNoBiomeFirstExceptionOptions {
1267
+ /**
1268
+ * The kind of the code actions emitted by the rule
1269
+ */
1270
+ fix?: FixKind | null;
1271
+ /**
1272
+ * The severity of the emitted diagnostics by the rule
1273
+ */
1274
+ level: RulePlainConfiguration;
1275
+ /**
1276
+ * Rule's options
1277
+ */
1278
+ options?: NoBiomeFirstExceptionOptions;
1279
+ }
1280
+ export interface RuleWithNoBitwiseOperatorsOptions {
1281
+ /**
1282
+ * The severity of the emitted diagnostics by the rule
1283
+ */
1284
+ level: RulePlainConfiguration;
1285
+ /**
1286
+ * Rule's options
1287
+ */
1288
+ options?: NoBitwiseOperatorsOptions;
1289
+ }
1290
+ export interface RuleWithNoCatchAssignOptions {
1291
+ /**
1292
+ * The severity of the emitted diagnostics by the rule
1293
+ */
1294
+ level: RulePlainConfiguration;
1295
+ /**
1296
+ * Rule's options
1297
+ */
1298
+ options?: NoCatchAssignOptions;
1299
+ }
1300
+ export interface RuleWithNoClassAssignOptions {
1301
+ /**
1302
+ * The severity of the emitted diagnostics by the rule
1303
+ */
1304
+ level: RulePlainConfiguration;
1305
+ /**
1306
+ * Rule's options
1307
+ */
1308
+ options?: NoClassAssignOptions;
1309
+ }
1310
+ export interface RuleWithNoCommentTextOptions {
1311
+ /**
1312
+ * The kind of the code actions emitted by the rule
1313
+ */
1314
+ fix?: FixKind | null;
1315
+ /**
1316
+ * The severity of the emitted diagnostics by the rule
1317
+ */
1318
+ level: RulePlainConfiguration;
1319
+ /**
1320
+ * Rule's options
1321
+ */
1322
+ options?: NoCommentTextOptions;
1323
+ }
1324
+ export interface RuleWithNoCompareNegZeroOptions {
1325
+ /**
1326
+ * The kind of the code actions emitted by the rule
1327
+ */
1328
+ fix?: FixKind | null;
1329
+ /**
1330
+ * The severity of the emitted diagnostics by the rule
1331
+ */
1332
+ level: RulePlainConfiguration;
1333
+ /**
1334
+ * Rule's options
1335
+ */
1336
+ options?: NoCompareNegZeroOptions;
1337
+ }