oxlint 1.70.0 → 1.71.0

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.
@@ -672,6 +672,46 @@
672
672
  },
673
673
  "additionalProperties": false
674
674
  },
675
+ "AnchorIsValidAspect": {
676
+ "type": "string",
677
+ "enum": [
678
+ "noHref",
679
+ "invalidHref",
680
+ "preferButton"
681
+ ]
682
+ },
683
+ "AnchorIsValidConfig": {
684
+ "type": "object",
685
+ "properties": {
686
+ "aspects": {
687
+ "description": "Sub-rule aspects to run.",
688
+ "type": "array",
689
+ "items": {
690
+ "$ref": "#/definitions/AnchorIsValidAspect"
691
+ },
692
+ "markdownDescription": "Sub-rule aspects to run."
693
+ },
694
+ "components": {
695
+ "description": "Custom components to treat as anchor elements.",
696
+ "default": [],
697
+ "type": "array",
698
+ "items": {
699
+ "type": "string"
700
+ },
701
+ "markdownDescription": "Custom components to treat as anchor elements."
702
+ },
703
+ "specialLink": {
704
+ "description": "Custom prop names to treat as link destinations.",
705
+ "default": [],
706
+ "type": "array",
707
+ "items": {
708
+ "type": "string"
709
+ },
710
+ "markdownDescription": "Custom prop names to treat as link destinations."
711
+ }
712
+ },
713
+ "additionalProperties": false
714
+ },
675
715
  "ArgsOption": {
676
716
  "oneOf": [
677
717
  {
@@ -844,8 +884,10 @@
844
884
  "type": "object",
845
885
  "properties": {
846
886
  "requireReturnForObjectLiteral": {
887
+ "description": "Requires braces and an explicit return for object literals. This option only applies when\nthe first option is `\"as-needed\"`.",
847
888
  "default": false,
848
- "type": "boolean"
889
+ "type": "boolean",
890
+ "markdownDescription": "Requires braces and an explicit return for object literals. This option only applies when\nthe first option is `\"as-needed\"`."
849
891
  }
850
892
  },
851
893
  "additionalProperties": false
@@ -1096,6 +1138,14 @@
1096
1138
  },
1097
1139
  "additionalProperties": false
1098
1140
  },
1141
+ "CallbackReturn": {
1142
+ "description": "The rule takes a single option - an array of possible callback names - which may include object methods. The default callback names are `callback`, `cb`, `next`.",
1143
+ "type": "array",
1144
+ "items": {
1145
+ "type": "string"
1146
+ },
1147
+ "markdownDescription": "The rule takes a single option - an array of possible callback names - which may include object methods. The default callback names are `callback`, `cb`, `next`."
1148
+ },
1099
1149
  "CapitalizedCommentsOptions": {
1100
1150
  "description": "Configuration for the capitalized-comments rule.\n\nThe first element specifies whether comments should `\"always\"` or `\"never\"`\nbegin with a capital letter. The second element is an optional object\ncontaining additional options.",
1101
1151
  "type": "array",
@@ -1438,6 +1488,18 @@
1438
1488
  },
1439
1489
  "additionalProperties": false
1440
1490
  },
1491
+ "ComplexityConfigEnum": {
1492
+ "anyOf": [
1493
+ {
1494
+ "type": "integer",
1495
+ "format": "uint32",
1496
+ "minimum": 0.0
1497
+ },
1498
+ {
1499
+ "$ref": "#/definitions/ComplexityConfig"
1500
+ }
1501
+ ]
1502
+ },
1441
1503
  "Config": {
1442
1504
  "type": "array",
1443
1505
  "items": [
@@ -2242,14 +2304,7 @@
2242
2304
  "$ref": "#/definitions/AllowWarnDeny"
2243
2305
  },
2244
2306
  {
2245
- "anyOf": [
2246
- {
2247
- "type": "number"
2248
- },
2249
- {
2250
- "$ref": "#/definitions/ComplexityConfig"
2251
- }
2252
- ]
2307
+ "$ref": "#/definitions/ComplexityConfigEnum"
2253
2308
  }
2254
2309
  ],
2255
2310
  "maxItems": 2,
@@ -2336,7 +2391,57 @@
2336
2391
  "$ref": "#/definitions/RuleNoConfig"
2337
2392
  },
2338
2393
  "func-name-matching": {
2339
- "$ref": "#/definitions/DummyRule"
2394
+ "anyOf": [
2395
+ {
2396
+ "$ref": "#/definitions/RuleNoConfig"
2397
+ },
2398
+ {
2399
+ "anyOf": [
2400
+ {
2401
+ "type": "array",
2402
+ "items": [
2403
+ {
2404
+ "$ref": "#/definitions/AllowWarnDeny"
2405
+ },
2406
+ {
2407
+ "$ref": "#/definitions/FuncNameMatchingMode"
2408
+ },
2409
+ {
2410
+ "$ref": "#/definitions/FuncNameMatchingConfig"
2411
+ }
2412
+ ],
2413
+ "maxItems": 3,
2414
+ "minItems": 2
2415
+ },
2416
+ {
2417
+ "type": "array",
2418
+ "items": [
2419
+ {
2420
+ "$ref": "#/definitions/AllowWarnDeny"
2421
+ },
2422
+ {
2423
+ "$ref": "#/definitions/FuncNameMatchingMode"
2424
+ }
2425
+ ],
2426
+ "maxItems": 2,
2427
+ "minItems": 2
2428
+ },
2429
+ {
2430
+ "type": "array",
2431
+ "items": [
2432
+ {
2433
+ "$ref": "#/definitions/AllowWarnDeny"
2434
+ },
2435
+ {
2436
+ "$ref": "#/definitions/FuncNameMatchingConfig"
2437
+ }
2438
+ ],
2439
+ "maxItems": 2,
2440
+ "minItems": 2
2441
+ }
2442
+ ]
2443
+ }
2444
+ ]
2340
2445
  },
2341
2446
  "func-names": {
2342
2447
  "anyOf": [
@@ -2503,7 +2608,57 @@
2503
2608
  "$ref": "#/definitions/RuleNoConfig"
2504
2609
  },
2505
2610
  "import/extensions": {
2506
- "$ref": "#/definitions/DummyRule"
2611
+ "anyOf": [
2612
+ {
2613
+ "$ref": "#/definitions/RuleNoConfig"
2614
+ },
2615
+ {
2616
+ "anyOf": [
2617
+ {
2618
+ "type": "array",
2619
+ "items": [
2620
+ {
2621
+ "$ref": "#/definitions/AllowWarnDeny"
2622
+ },
2623
+ {
2624
+ "$ref": "#/definitions/ExtensionRule"
2625
+ },
2626
+ {
2627
+ "$ref": "#/definitions/ImportExtensionsObject"
2628
+ }
2629
+ ],
2630
+ "maxItems": 3,
2631
+ "minItems": 2
2632
+ },
2633
+ {
2634
+ "type": "array",
2635
+ "items": [
2636
+ {
2637
+ "$ref": "#/definitions/AllowWarnDeny"
2638
+ },
2639
+ {
2640
+ "$ref": "#/definitions/ExtensionRule"
2641
+ }
2642
+ ],
2643
+ "maxItems": 2,
2644
+ "minItems": 2
2645
+ },
2646
+ {
2647
+ "type": "array",
2648
+ "items": [
2649
+ {
2650
+ "$ref": "#/definitions/AllowWarnDeny"
2651
+ },
2652
+ {
2653
+ "$ref": "#/definitions/ImportExtensionsObject"
2654
+ }
2655
+ ],
2656
+ "maxItems": 2,
2657
+ "minItems": 2
2658
+ }
2659
+ ]
2660
+ }
2661
+ ]
2507
2662
  },
2508
2663
  "import/first": {
2509
2664
  "anyOf": [
@@ -3392,13 +3547,47 @@
3392
3547
  "$ref": "#/definitions/DummyRule"
3393
3548
  },
3394
3549
  "jsdoc/require-param-description": {
3395
- "$ref": "#/definitions/RuleNoConfig"
3550
+ "anyOf": [
3551
+ {
3552
+ "$ref": "#/definitions/RuleNoConfig"
3553
+ },
3554
+ {
3555
+ "type": "array",
3556
+ "items": [
3557
+ {
3558
+ "$ref": "#/definitions/AllowWarnDeny"
3559
+ },
3560
+ {
3561
+ "$ref": "#/definitions/RequireParamDescriptionConfig"
3562
+ }
3563
+ ],
3564
+ "maxItems": 2,
3565
+ "minItems": 2
3566
+ }
3567
+ ]
3396
3568
  },
3397
3569
  "jsdoc/require-param-name": {
3398
3570
  "$ref": "#/definitions/RuleNoConfig"
3399
3571
  },
3400
3572
  "jsdoc/require-param-type": {
3401
- "$ref": "#/definitions/RuleNoConfig"
3573
+ "anyOf": [
3574
+ {
3575
+ "$ref": "#/definitions/RuleNoConfig"
3576
+ },
3577
+ {
3578
+ "type": "array",
3579
+ "items": [
3580
+ {
3581
+ "$ref": "#/definitions/AllowWarnDeny"
3582
+ },
3583
+ {
3584
+ "$ref": "#/definitions/RequireParamTypeConfig"
3585
+ }
3586
+ ],
3587
+ "maxItems": 2,
3588
+ "minItems": 2
3589
+ }
3590
+ ]
3402
3591
  },
3403
3592
  "jsdoc/require-property": {
3404
3593
  "$ref": "#/definitions/RuleNoConfig"
@@ -3514,7 +3703,24 @@
3514
3703
  "$ref": "#/definitions/RuleNoConfig"
3515
3704
  },
3516
3705
  "jsx-a11y/anchor-is-valid": {
3517
- "$ref": "#/definitions/DummyRule"
3706
+ "anyOf": [
3707
+ {
3708
+ "$ref": "#/definitions/RuleNoConfig"
3709
+ },
3710
+ {
3711
+ "type": "array",
3712
+ "items": [
3713
+ {
3714
+ "$ref": "#/definitions/AllowWarnDeny"
3715
+ },
3716
+ {
3717
+ "$ref": "#/definitions/AnchorIsValidConfig"
3718
+ }
3719
+ ],
3720
+ "maxItems": 2,
3721
+ "minItems": 2
3722
+ }
3723
+ ]
3518
3724
  },
3519
3725
  "jsx-a11y/aria-activedescendant-has-tabindex": {
3520
3726
  "$ref": "#/definitions/RuleNoConfig"
@@ -3787,7 +3993,24 @@
3787
3993
  ]
3788
3994
  },
3789
3995
  "jsx-a11y/no-noninteractive-element-interactions": {
3790
- "$ref": "#/definitions/DummyRule"
3996
+ "anyOf": [
3997
+ {
3998
+ "$ref": "#/definitions/RuleNoConfig"
3999
+ },
4000
+ {
4001
+ "type": "array",
4002
+ "items": [
4003
+ {
4004
+ "$ref": "#/definitions/AllowWarnDeny"
4005
+ },
4006
+ {
4007
+ "$ref": "#/definitions/NoNoninteractiveElementInteractionsConfig"
4008
+ }
4009
+ ],
4010
+ "maxItems": 2,
4011
+ "minItems": 2
4012
+ }
4013
+ ]
3791
4014
  },
3792
4015
  "jsx-a11y/no-noninteractive-element-to-interactive-role": {
3793
4016
  "anyOf": [
@@ -3919,14 +4142,7 @@
3919
4142
  "$ref": "#/definitions/AllowWarnDeny"
3920
4143
  },
3921
4144
  {
3922
- "anyOf": [
3923
- {
3924
- "type": "number"
3925
- },
3926
- {
3927
- "$ref": "#/definitions/MaxClassesPerFileConfig"
3928
- }
3929
- ]
4145
+ "$ref": "#/definitions/MaxClassesPerFileConfigEnum"
3930
4146
  }
3931
4147
  ],
3932
4148
  "maxItems": 2,
@@ -3946,14 +4162,7 @@
3946
4162
  "$ref": "#/definitions/AllowWarnDeny"
3947
4163
  },
3948
4164
  {
3949
- "anyOf": [
3950
- {
3951
- "type": "number"
3952
- },
3953
- {
3954
- "$ref": "#/definitions/MaxDepth"
3955
- }
3956
- ]
4165
+ "$ref": "#/definitions/MaxDepthConfigEnum"
3957
4166
  }
3958
4167
  ],
3959
4168
  "maxItems": 2,
@@ -3973,14 +4182,7 @@
3973
4182
  "$ref": "#/definitions/AllowWarnDeny"
3974
4183
  },
3975
4184
  {
3976
- "anyOf": [
3977
- {
3978
- "type": "number"
3979
- },
3980
- {
3981
- "$ref": "#/definitions/MaxLinesConfig"
3982
- }
3983
- ]
4185
+ "$ref": "#/definitions/MaxLinesConfigEnum"
3984
4186
  }
3985
4187
  ],
3986
4188
  "maxItems": 2,
@@ -4000,14 +4202,7 @@
4000
4202
  "$ref": "#/definitions/AllowWarnDeny"
4001
4203
  },
4002
4204
  {
4003
- "anyOf": [
4004
- {
4005
- "type": "number"
4006
- },
4007
- {
4008
- "$ref": "#/definitions/MaxLinesPerFunctionConfig"
4009
- }
4010
- ]
4205
+ "$ref": "#/definitions/MaxLinesPerFunctionConfigEnum"
4011
4206
  }
4012
4207
  ],
4013
4208
  "maxItems": 2,
@@ -4027,14 +4222,7 @@
4027
4222
  "$ref": "#/definitions/AllowWarnDeny"
4028
4223
  },
4029
4224
  {
4030
- "anyOf": [
4031
- {
4032
- "type": "number"
4033
- },
4034
- {
4035
- "$ref": "#/definitions/MaxNestedCallbacks"
4036
- }
4037
- ]
4225
+ "$ref": "#/definitions/MaxNestedCallbacksConfigEnum"
4038
4226
  }
4039
4227
  ],
4040
4228
  "maxItems": 2,
@@ -4054,14 +4242,7 @@
4054
4242
  "$ref": "#/definitions/AllowWarnDeny"
4055
4243
  },
4056
4244
  {
4057
- "anyOf": [
4058
- {
4059
- "type": "number"
4060
- },
4061
- {
4062
- "$ref": "#/definitions/MaxParamsConfig"
4063
- }
4064
- ]
4245
+ "$ref": "#/definitions/MaxParamsConfigEnum"
4065
4246
  }
4066
4247
  ],
4067
4248
  "maxItems": 2,
@@ -4081,14 +4262,7 @@
4081
4262
  "$ref": "#/definitions/AllowWarnDeny"
4082
4263
  },
4083
4264
  {
4084
- "anyOf": [
4085
- {
4086
- "type": "number"
4087
- },
4088
- {
4089
- "$ref": "#/definitions/MaxStatementsConfig"
4090
- }
4091
- ]
4265
+ "$ref": "#/definitions/MaxStatementsConfigEnum"
4092
4266
  }
4093
4267
  ],
4094
4268
  "maxItems": 2,
@@ -4913,7 +5087,25 @@
4913
5087
  "$ref": "#/definitions/DummyRule"
4914
5088
  },
4915
5089
  "no-restricted-properties": {
4916
- "$ref": "#/definitions/DummyRule"
5090
+ "anyOf": [
5091
+ {
5092
+ "$ref": "#/definitions/RuleNoConfig"
5093
+ },
5094
+ {
5095
+ "items": [
5096
+ {
5097
+ "$ref": "#/definitions/AllowWarnDeny"
5098
+ },
5099
+ {
5100
+ "$ref": "#/definitions/PropertyDetails"
5101
+ }
5102
+ ],
5103
+ "additionalItems": {
5104
+ "$ref": "#/definitions/PropertyDetails"
5105
+ },
5106
+ "minItems": 2
5107
+ }
5108
+ ]
4917
5109
  },
4918
5110
  "no-return-assign": {
4919
5111
  "anyOf": [
@@ -5351,7 +5543,24 @@
5351
5543
  "$ref": "#/definitions/RuleNoConfig"
5352
5544
  },
5353
5545
  "node/callback-return": {
5354
- "$ref": "#/definitions/DummyRule"
5546
+ "anyOf": [
5547
+ {
5548
+ "$ref": "#/definitions/RuleNoConfig"
5549
+ },
5550
+ {
5551
+ "type": "array",
5552
+ "items": [
5553
+ {
5554
+ "$ref": "#/definitions/AllowWarnDeny"
5555
+ },
5556
+ {
5557
+ "$ref": "#/definitions/CallbackReturn"
5558
+ }
5559
+ ],
5560
+ "maxItems": 2,
5561
+ "minItems": 2
5562
+ }
5563
+ ]
5355
5564
  },
5356
5565
  "node/global-require": {
5357
5566
  "$ref": "#/definitions/RuleNoConfig"
@@ -5379,13 +5588,7 @@
5379
5588
  "node/no-exports-assign": {
5380
5589
  "$ref": "#/definitions/RuleNoConfig"
5381
5590
  },
5382
- "node/no-new-require": {
5383
- "$ref": "#/definitions/RuleNoConfig"
5384
- },
5385
- "node/no-path-concat": {
5386
- "$ref": "#/definitions/RuleNoConfig"
5387
- },
5388
- "node/no-process-env": {
5591
+ "node/no-mixed-requires": {
5389
5592
  "anyOf": [
5390
5593
  {
5391
5594
  "$ref": "#/definitions/RuleNoConfig"
@@ -5397,7 +5600,7 @@
5397
5600
  "$ref": "#/definitions/AllowWarnDeny"
5398
5601
  },
5399
5602
  {
5400
- "$ref": "#/definitions/NoProcessEnvConfig"
5603
+ "$ref": "#/definitions/NoMixedRequiresConfig"
5401
5604
  }
5402
5605
  ],
5403
5606
  "maxItems": 2,
@@ -5405,7 +5608,53 @@
5405
5608
  }
5406
5609
  ]
5407
5610
  },
5408
- "object-shorthand": {
5611
+ "node/no-new-require": {
5612
+ "$ref": "#/definitions/RuleNoConfig"
5613
+ },
5614
+ "node/no-path-concat": {
5615
+ "$ref": "#/definitions/RuleNoConfig"
5616
+ },
5617
+ "node/no-process-env": {
5618
+ "anyOf": [
5619
+ {
5620
+ "$ref": "#/definitions/RuleNoConfig"
5621
+ },
5622
+ {
5623
+ "type": "array",
5624
+ "items": [
5625
+ {
5626
+ "$ref": "#/definitions/AllowWarnDeny"
5627
+ },
5628
+ {
5629
+ "$ref": "#/definitions/NoProcessEnvConfig"
5630
+ }
5631
+ ],
5632
+ "maxItems": 2,
5633
+ "minItems": 2
5634
+ }
5635
+ ]
5636
+ },
5637
+ "node/no-sync": {
5638
+ "anyOf": [
5639
+ {
5640
+ "$ref": "#/definitions/RuleNoConfig"
5641
+ },
5642
+ {
5643
+ "type": "array",
5644
+ "items": [
5645
+ {
5646
+ "$ref": "#/definitions/AllowWarnDeny"
5647
+ },
5648
+ {
5649
+ "$ref": "#/definitions/NoSyncConfig"
5650
+ }
5651
+ ],
5652
+ "maxItems": 2,
5653
+ "minItems": 2
5654
+ }
5655
+ ]
5656
+ },
5657
+ "object-shorthand": {
5409
5658
  "anyOf": [
5410
5659
  {
5411
5660
  "$ref": "#/definitions/RuleNoConfig"
@@ -5652,7 +5901,27 @@
5652
5901
  ]
5653
5902
  },
5654
5903
  "prefer-destructuring": {
5655
- "$ref": "#/definitions/DummyRule"
5904
+ "anyOf": [
5905
+ {
5906
+ "$ref": "#/definitions/RuleNoConfig"
5907
+ },
5908
+ {
5909
+ "type": "array",
5910
+ "items": [
5911
+ {
5912
+ "$ref": "#/definitions/AllowWarnDeny"
5913
+ },
5914
+ {
5915
+ "$ref": "#/definitions/PreferDestructuringOption"
5916
+ },
5917
+ {
5918
+ "$ref": "#/definitions/PreferDestructuringRenamedPropertiesConfig"
5919
+ }
5920
+ ],
5921
+ "maxItems": 3,
5922
+ "minItems": 2
5923
+ }
5924
+ ]
5656
5925
  },
5657
5926
  "prefer-exponentiation-operator": {
5658
5927
  "$ref": "#/definitions/RuleNoConfig"
@@ -6361,7 +6630,47 @@
6361
6630
  ]
6362
6631
  },
6363
6632
  "react/jsx-no-script-url": {
6364
- "$ref": "#/definitions/DummyRule"
6633
+ "anyOf": [
6634
+ {
6635
+ "$ref": "#/definitions/RuleNoConfig"
6636
+ },
6637
+ {
6638
+ "anyOf": [
6639
+ {
6640
+ "type": "array",
6641
+ "items": [
6642
+ {
6643
+ "$ref": "#/definitions/AllowWarnDeny"
6644
+ },
6645
+ {
6646
+ "type": "array",
6647
+ "items": {
6648
+ "$ref": "#/definitions/JsxNoScriptUrlComponent"
6649
+ }
6650
+ },
6651
+ {
6652
+ "$ref": "#/definitions/JsxNoScriptUrlOptions"
6653
+ }
6654
+ ],
6655
+ "maxItems": 3,
6656
+ "minItems": 2
6657
+ },
6658
+ {
6659
+ "type": "array",
6660
+ "items": [
6661
+ {
6662
+ "$ref": "#/definitions/AllowWarnDeny"
6663
+ },
6664
+ {
6665
+ "$ref": "#/definitions/JsxNoScriptUrlOptions"
6666
+ }
6667
+ ],
6668
+ "maxItems": 2,
6669
+ "minItems": 2
6670
+ }
6671
+ ]
6672
+ }
6673
+ ]
6365
6674
  },
6366
6675
  "react/jsx-no-target-blank": {
6367
6676
  "anyOf": [
@@ -8330,6 +8639,26 @@
8330
8639
  }
8331
8640
  ]
8332
8641
  },
8642
+ "unicorn/max-nested-calls": {
8643
+ "anyOf": [
8644
+ {
8645
+ "$ref": "#/definitions/RuleNoConfig"
8646
+ },
8647
+ {
8648
+ "type": "array",
8649
+ "items": [
8650
+ {
8651
+ "$ref": "#/definitions/AllowWarnDeny"
8652
+ },
8653
+ {
8654
+ "$ref": "#/definitions/MaxNestedCalls"
8655
+ }
8656
+ ],
8657
+ "maxItems": 2,
8658
+ "minItems": 2
8659
+ }
8660
+ ]
8661
+ },
8333
8662
  "unicorn/new-for-builtins": {
8334
8663
  "$ref": "#/definitions/RuleNoConfig"
8335
8664
  },
@@ -8632,7 +8961,24 @@
8632
8961
  "$ref": "#/definitions/RuleNoConfig"
8633
8962
  },
8634
8963
  "unicorn/numeric-separators-style": {
8635
- "$ref": "#/definitions/DummyRule"
8964
+ "anyOf": [
8965
+ {
8966
+ "$ref": "#/definitions/RuleNoConfig"
8967
+ },
8968
+ {
8969
+ "type": "array",
8970
+ "items": [
8971
+ {
8972
+ "$ref": "#/definitions/AllowWarnDeny"
8973
+ },
8974
+ {
8975
+ "$ref": "#/definitions/NumericSeparatorsStyleConfig"
8976
+ }
8977
+ ],
8978
+ "maxItems": 2,
8979
+ "minItems": 2
8980
+ }
8981
+ ]
8636
8982
  },
8637
8983
  "unicorn/prefer-add-event-listener": {
8638
8984
  "$ref": "#/definitions/RuleNoConfig"
@@ -8767,6 +9113,9 @@
8767
9113
  "unicorn/prefer-node-protocol": {
8768
9114
  "$ref": "#/definitions/RuleNoConfig"
8769
9115
  },
9116
+ "unicorn/prefer-number-coercion": {
9117
+ "$ref": "#/definitions/RuleNoConfig"
9118
+ },
8770
9119
  "unicorn/prefer-number-properties": {
8771
9120
  "anyOf": [
8772
9121
  {
@@ -9701,6 +10050,26 @@
9701
10050
  "vue/no-arrow-functions-in-watch": {
9702
10051
  "$ref": "#/definitions/RuleNoConfig"
9703
10052
  },
10053
+ "vue/no-async-in-computed-properties": {
10054
+ "anyOf": [
10055
+ {
10056
+ "$ref": "#/definitions/RuleNoConfig"
10057
+ },
10058
+ {
10059
+ "type": "array",
10060
+ "items": [
10061
+ {
10062
+ "$ref": "#/definitions/AllowWarnDeny"
10063
+ },
10064
+ {
10065
+ "$ref": "#/definitions/NoAsyncInComputedProperties"
10066
+ }
10067
+ ],
10068
+ "maxItems": 2,
10069
+ "minItems": 2
10070
+ }
10071
+ ]
10072
+ },
9704
10073
  "vue/no-computed-properties-in-data": {
9705
10074
  "$ref": "#/definitions/RuleNoConfig"
9706
10075
  },
@@ -10311,6 +10680,16 @@
10311
10680
  },
10312
10681
  "additionalProperties": false
10313
10682
  },
10683
+ "ExtensionRule": {
10684
+ "description": "Extension rule configuration; Copy to avoid extra indirection.",
10685
+ "type": "string",
10686
+ "enum": [
10687
+ "always",
10688
+ "never",
10689
+ "ignorePackages"
10690
+ ],
10691
+ "markdownDescription": "Extension rule configuration; Copy to avoid extra indirection."
10692
+ },
10314
10693
  "ExternalPluginEntry": {
10315
10694
  "anyOf": [
10316
10695
  {
@@ -10594,6 +10973,31 @@
10594
10973
  }
10595
10974
  ]
10596
10975
  },
10976
+ "FuncNameMatchingConfig": {
10977
+ "type": "object",
10978
+ "properties": {
10979
+ "considerPropertyDescriptor": {
10980
+ "description": "If `considerPropertyDescriptor` is set to `true`, the check will take into account the use of `Object.create`, `Object.defineProperty`, `Object.defineProperties`, and `Reflect.defineProperty`.",
10981
+ "default": false,
10982
+ "type": "boolean",
10983
+ "markdownDescription": "If `considerPropertyDescriptor` is set to `true`, the check will take into account the use of `Object.create`, `Object.defineProperty`, `Object.defineProperties`, and `Reflect.defineProperty`."
10984
+ },
10985
+ "includeCommonJSModuleExports": {
10986
+ "description": "If `includeCommonJSModuleExports` is set to `true`, `module.exports` and `module[\"exports\"]` will be checked by this rule.",
10987
+ "default": false,
10988
+ "type": "boolean",
10989
+ "markdownDescription": "If `includeCommonJSModuleExports` is set to `true`, `module.exports` and `module[\"exports\"]` will be checked by this rule."
10990
+ }
10991
+ },
10992
+ "additionalProperties": false
10993
+ },
10994
+ "FuncNameMatchingMode": {
10995
+ "type": "string",
10996
+ "enum": [
10997
+ "always",
10998
+ "never"
10999
+ ]
11000
+ },
10597
11001
  "FuncNames": {
10598
11002
  "type": "array",
10599
11003
  "items": [
@@ -11048,6 +11452,53 @@
11048
11452
  },
11049
11453
  "additionalProperties": false
11050
11454
  },
11455
+ "ImportExtensionsConfig": {
11456
+ "type": "object",
11457
+ "properties": {
11458
+ "checkTypeImports": {
11459
+ "description": "Whether to check type imports when enforcing extension rules.",
11460
+ "default": false,
11461
+ "type": "boolean",
11462
+ "markdownDescription": "Whether to check type imports when enforcing extension rules."
11463
+ },
11464
+ "ignorePackages": {
11465
+ "description": "Whether to ignore package imports when enforcing extension rules.",
11466
+ "default": false,
11467
+ "type": "boolean",
11468
+ "markdownDescription": "Whether to ignore package imports when enforcing extension rules."
11469
+ },
11470
+ "pathGroupOverrides": {
11471
+ "description": "Path group overrides for bespoke import specifiers.",
11472
+ "type": "array",
11473
+ "items": {
11474
+ "$ref": "#/definitions/PathGroupOverrideConfig"
11475
+ },
11476
+ "markdownDescription": "Path group overrides for bespoke import specifiers."
11477
+ },
11478
+ "pattern": {
11479
+ "description": "Per-extension rules.",
11480
+ "type": "object",
11481
+ "additionalProperties": {
11482
+ "$ref": "#/definitions/ExtensionRule"
11483
+ },
11484
+ "markdownDescription": "Per-extension rules."
11485
+ }
11486
+ },
11487
+ "additionalProperties": false
11488
+ },
11489
+ "ImportExtensionsObject": {
11490
+ "anyOf": [
11491
+ {
11492
+ "$ref": "#/definitions/ImportExtensionsConfig"
11493
+ },
11494
+ {
11495
+ "type": "object",
11496
+ "additionalProperties": {
11497
+ "$ref": "#/definitions/ExtensionRule"
11498
+ }
11499
+ }
11500
+ ]
11501
+ },
11051
11502
  "ImportKind": {
11052
11503
  "type": "string",
11053
11504
  "enum": [
@@ -11586,6 +12037,41 @@
11586
12037
  "additionalProperties": false,
11587
12038
  "markdownDescription": "The options shared between the top-level config and each `elementOverrides` entry."
11588
12039
  },
12040
+ "JsxNoScriptUrlComponent": {
12041
+ "type": "object",
12042
+ "required": [
12043
+ "name",
12044
+ "props"
12045
+ ],
12046
+ "properties": {
12047
+ "name": {
12048
+ "description": "Component name.",
12049
+ "type": "string",
12050
+ "markdownDescription": "Component name."
12051
+ },
12052
+ "props": {
12053
+ "description": "List of properties that should be validated.",
12054
+ "type": "array",
12055
+ "items": {
12056
+ "type": "string"
12057
+ },
12058
+ "markdownDescription": "List of properties that should be validated."
12059
+ }
12060
+ },
12061
+ "additionalProperties": false
12062
+ },
12063
+ "JsxNoScriptUrlOptions": {
12064
+ "type": "object",
12065
+ "properties": {
12066
+ "includeFromSettings": {
12067
+ "description": "Whether to include components from settings.",
12068
+ "default": false,
12069
+ "type": "boolean",
12070
+ "markdownDescription": "Whether to include components from settings."
12071
+ }
12072
+ },
12073
+ "additionalProperties": false
12074
+ },
11589
12075
  "JsxNoTargetBlank": {
11590
12076
  "type": "object",
11591
12077
  "properties": {
@@ -11891,6 +12377,18 @@
11891
12377
  },
11892
12378
  "additionalProperties": false
11893
12379
  },
12380
+ "MaxClassesPerFileConfigEnum": {
12381
+ "anyOf": [
12382
+ {
12383
+ "type": "integer",
12384
+ "format": "uint32",
12385
+ "minimum": 0.0
12386
+ },
12387
+ {
12388
+ "$ref": "#/definitions/MaxClassesPerFileConfig"
12389
+ }
12390
+ ]
12391
+ },
11894
12392
  "MaxDependenciesConfig": {
11895
12393
  "type": "object",
11896
12394
  "properties": {
@@ -11937,6 +12435,18 @@
11937
12435
  },
11938
12436
  "additionalProperties": false
11939
12437
  },
12438
+ "MaxDepthConfigEnum": {
12439
+ "anyOf": [
12440
+ {
12441
+ "type": "integer",
12442
+ "format": "uint32",
12443
+ "minimum": 0.0
12444
+ },
12445
+ {
12446
+ "$ref": "#/definitions/MaxDepth"
12447
+ }
12448
+ ]
12449
+ },
11940
12450
  "MaxExpectsConfig": {
11941
12451
  "type": "object",
11942
12452
  "properties": {
@@ -11977,6 +12487,18 @@
11977
12487
  },
11978
12488
  "additionalProperties": false
11979
12489
  },
12490
+ "MaxLinesConfigEnum": {
12491
+ "anyOf": [
12492
+ {
12493
+ "type": "integer",
12494
+ "format": "uint32",
12495
+ "minimum": 0.0
12496
+ },
12497
+ {
12498
+ "$ref": "#/definitions/MaxLinesConfig"
12499
+ }
12500
+ ]
12501
+ },
11980
12502
  "MaxLinesPerFunctionConfig": {
11981
12503
  "type": "object",
11982
12504
  "properties": {
@@ -12009,6 +12531,18 @@
12009
12531
  },
12010
12532
  "additionalProperties": false
12011
12533
  },
12534
+ "MaxLinesPerFunctionConfigEnum": {
12535
+ "anyOf": [
12536
+ {
12537
+ "type": "integer",
12538
+ "format": "uint32",
12539
+ "minimum": 0.0
12540
+ },
12541
+ {
12542
+ "$ref": "#/definitions/MaxLinesPerFunctionConfig"
12543
+ }
12544
+ ]
12545
+ },
12012
12546
  "MaxNestedCallbacks": {
12013
12547
  "type": "object",
12014
12548
  "properties": {
@@ -12023,7 +12557,33 @@
12023
12557
  },
12024
12558
  "additionalProperties": false
12025
12559
  },
12026
- "MaxNestedDescribeConfig": {
12560
+ "MaxNestedCallbacksConfigEnum": {
12561
+ "anyOf": [
12562
+ {
12563
+ "type": "integer",
12564
+ "format": "uint32",
12565
+ "minimum": 0.0
12566
+ },
12567
+ {
12568
+ "$ref": "#/definitions/MaxNestedCallbacks"
12569
+ }
12570
+ ]
12571
+ },
12572
+ "MaxNestedCalls": {
12573
+ "type": "object",
12574
+ "properties": {
12575
+ "max": {
12576
+ "description": "The maximum allowed nested call depth.",
12577
+ "default": 3,
12578
+ "type": "integer",
12579
+ "format": "uint32",
12580
+ "minimum": 0.0,
12581
+ "markdownDescription": "The maximum allowed nested call depth."
12582
+ }
12583
+ },
12584
+ "additionalProperties": false
12585
+ },
12586
+ "MaxNestedDescribeConfig": {
12027
12587
  "type": "object",
12028
12588
  "properties": {
12029
12589
  "max": {
@@ -12066,6 +12626,18 @@
12066
12626
  },
12067
12627
  "additionalProperties": false
12068
12628
  },
12629
+ "MaxParamsConfigEnum": {
12630
+ "anyOf": [
12631
+ {
12632
+ "type": "integer",
12633
+ "format": "uint32",
12634
+ "minimum": 0.0
12635
+ },
12636
+ {
12637
+ "$ref": "#/definitions/MaxParamsConfig"
12638
+ }
12639
+ ]
12640
+ },
12069
12641
  "MaxProps": {
12070
12642
  "type": "object",
12071
12643
  "properties": {
@@ -12100,6 +12672,18 @@
12100
12672
  },
12101
12673
  "additionalProperties": false
12102
12674
  },
12675
+ "MaxStatementsConfigEnum": {
12676
+ "anyOf": [
12677
+ {
12678
+ "type": "integer",
12679
+ "format": "uint32",
12680
+ "minimum": 0.0
12681
+ },
12682
+ {
12683
+ "$ref": "#/definitions/MaxStatementsConfig"
12684
+ }
12685
+ ]
12686
+ },
12103
12687
  "MediaHasCaptionConfig": {
12104
12688
  "type": "object",
12105
12689
  "properties": {
@@ -12200,11 +12784,31 @@
12200
12784
  ]
12201
12785
  },
12202
12786
  "Mode2": {
12203
- "type": "string",
12204
- "enum": [
12205
- "as-needed",
12206
- "always",
12207
- "never"
12787
+ "oneOf": [
12788
+ {
12789
+ "description": "Enforces no braces where they can be omitted (default).",
12790
+ "type": "string",
12791
+ "enum": [
12792
+ "as-needed"
12793
+ ],
12794
+ "markdownDescription": "Enforces no braces where they can be omitted (default)."
12795
+ },
12796
+ {
12797
+ "description": "Enforces braces around the function body.",
12798
+ "type": "string",
12799
+ "enum": [
12800
+ "always"
12801
+ ],
12802
+ "markdownDescription": "Enforces braces around the function body."
12803
+ },
12804
+ {
12805
+ "description": "Enforces no braces around the function body (constrains arrow functions to the role of returning an expression).",
12806
+ "type": "string",
12807
+ "enum": [
12808
+ "never"
12809
+ ],
12810
+ "markdownDescription": "Enforces no braces around the function body (constrains arrow functions to the role of returning an expression)."
12811
+ }
12208
12812
  ]
12209
12813
  },
12210
12814
  "Modifier": {
@@ -12589,6 +13193,25 @@
12589
13193
  },
12590
13194
  "additionalProperties": false
12591
13195
  },
13196
+ "NoAsyncInComputedProperties": {
13197
+ "$ref": "#/definitions/NoAsyncInComputedPropertiesConfig"
13198
+ },
13199
+ "NoAsyncInComputedPropertiesConfig": {
13200
+ "type": "object",
13201
+ "properties": {
13202
+ "ignoredObjectNames": {
13203
+ "description": "Names of identifiers whose member-call chains (`.then` / `.catch` / `.finally`)\nshould be ignored. Useful for libraries like Zod where `.catch(default)` is\na builder API, not a Promise method.",
13204
+ "default": [],
13205
+ "type": "array",
13206
+ "items": {
13207
+ "type": "string"
13208
+ },
13209
+ "uniqueItems": true,
13210
+ "markdownDescription": "Names of identifiers whose member-call chains (`.then` / `.catch` / `.finally`)\nshould be ignored. Useful for libraries like Zod where `.catch(default)` is\na builder API, not a Promise method."
13211
+ }
13212
+ },
13213
+ "additionalProperties": false
13214
+ },
12592
13215
  "NoAutofocus": {
12593
13216
  "type": "object",
12594
13217
  "properties": {
@@ -13736,6 +14359,30 @@
13736
14359
  },
13737
14360
  "additionalProperties": false
13738
14361
  },
14362
+ "NoMixedRequiresConfig": {
14363
+ "anyOf": [
14364
+ {
14365
+ "type": "boolean"
14366
+ },
14367
+ {
14368
+ "$ref": "#/definitions/NoMixedRequiresOptions"
14369
+ }
14370
+ ]
14371
+ },
14372
+ "NoMixedRequiresOptions": {
14373
+ "type": "object",
14374
+ "properties": {
14375
+ "allowCall": {
14376
+ "default": false,
14377
+ "type": "boolean"
14378
+ },
14379
+ "grouping": {
14380
+ "default": false,
14381
+ "type": "boolean"
14382
+ }
14383
+ },
14384
+ "additionalProperties": false
14385
+ },
13739
14386
  "NoMultiAssign": {
13740
14387
  "type": "object",
13741
14388
  "properties": {
@@ -13814,6 +14461,53 @@
13814
14461
  },
13815
14462
  "additionalProperties": false
13816
14463
  },
14464
+ "NoNoninteractiveElementInteractionsConfig": {
14465
+ "type": "object",
14466
+ "properties": {
14467
+ "handlers": {
14468
+ "description": "An array of event handler names that should trigger this rule.",
14469
+ "default": [
14470
+ "onError",
14471
+ "onLoad",
14472
+ "onKeyPress",
14473
+ "onKeyDown",
14474
+ "onKeyUp",
14475
+ "onFocus",
14476
+ "onBlur",
14477
+ "onClick",
14478
+ "onContextMenu",
14479
+ "onDblClick",
14480
+ "onDoubleClick",
14481
+ "onDrag",
14482
+ "onDragEnd",
14483
+ "onDragEnter",
14484
+ "onDragExit",
14485
+ "onDragLeave",
14486
+ "onDragOver",
14487
+ "onDragStart",
14488
+ "onDrop",
14489
+ "onMouseDown",
14490
+ "onMouseEnter",
14491
+ "onMouseLeave",
14492
+ "onMouseMove",
14493
+ "onMouseOut",
14494
+ "onMouseOver",
14495
+ "onMouseUp"
14496
+ ],
14497
+ "type": "array",
14498
+ "items": {
14499
+ "type": "string"
14500
+ },
14501
+ "markdownDescription": "An array of event handler names that should trigger this rule."
14502
+ }
14503
+ },
14504
+ "additionalProperties": {
14505
+ "type": "array",
14506
+ "items": {
14507
+ "type": "string"
14508
+ }
14509
+ }
14510
+ },
13817
14511
  "NoNoninteractiveElementToInteractiveRoleConfig": {
13818
14512
  "type": "object",
13819
14513
  "additionalProperties": {
@@ -14334,6 +15028,28 @@
14334
15028
  },
14335
15029
  "additionalProperties": false
14336
15030
  },
15031
+ "NoSyncConfig": {
15032
+ "type": "object",
15033
+ "properties": {
15034
+ "allowAtRootLevel": {
15035
+ "description": "Whether synchronous methods should be allowed at the top level of a file.",
15036
+ "default": false,
15037
+ "type": "boolean",
15038
+ "markdownDescription": "Whether synchronous methods should be allowed at the top level of a file."
15039
+ },
15040
+ "ignores": {
15041
+ "description": "Function names to ignore.",
15042
+ "default": [],
15043
+ "type": "array",
15044
+ "items": {
15045
+ "type": "string"
15046
+ },
15047
+ "uniqueItems": true,
15048
+ "markdownDescription": "Function names to ignore."
15049
+ }
15050
+ },
15051
+ "additionalProperties": false
15052
+ },
14337
15053
  "NoThisAliasConfig": {
14338
15054
  "type": "object",
14339
15055
  "properties": {
@@ -15089,6 +15805,128 @@
15089
15805
  }
15090
15806
  ]
15091
15807
  },
15808
+ "NumericBaseConfig": {
15809
+ "type": "object",
15810
+ "properties": {
15811
+ "groupLength": {
15812
+ "description": "The number of digits per group when inserting numeric separators.\nFor example, a `groupLength` of 3 formats `1234567` as `1_234_567`.",
15813
+ "default": 0,
15814
+ "type": "integer",
15815
+ "format": "uint32",
15816
+ "minimum": 0.0,
15817
+ "markdownDescription": "The number of digits per group when inserting numeric separators.\nFor example, a `groupLength` of 3 formats `1234567` as `1_234_567`."
15818
+ },
15819
+ "minimumDigits": {
15820
+ "description": "The minimum number of digits required before grouping is applied.\nValues with fewer digits than this threshold will not be grouped.",
15821
+ "default": 0,
15822
+ "type": "integer",
15823
+ "format": "uint32",
15824
+ "minimum": 0.0,
15825
+ "markdownDescription": "The minimum number of digits required before grouping is applied.\nValues with fewer digits than this threshold will not be grouped."
15826
+ },
15827
+ "onlyIfContainsSeparator": {
15828
+ "description": "Only enforce the rule when the numeric literal already contains a separator (`_`).\n\nWhen `true`, numbers without separators are left as-is; when `false` (default),\ngrouping will be enforced for eligible numbers even if they don't include separators yet.",
15829
+ "type": "boolean",
15830
+ "markdownDescription": "Only enforce the rule when the numeric literal already contains a separator (`_`).\n\nWhen `true`, numbers without separators are left as-is; when `false` (default),\ngrouping will be enforced for eligible numbers even if they don't include separators yet."
15831
+ }
15832
+ },
15833
+ "additionalProperties": false
15834
+ },
15835
+ "NumericNumberConfig": {
15836
+ "type": "object",
15837
+ "properties": {
15838
+ "fractionGroupLength": {
15839
+ "description": "The size a group of digits in the fractional part (after the decimal point) should be.",
15840
+ "default": 4294967295,
15841
+ "type": "integer",
15842
+ "format": "uint32",
15843
+ "minimum": 0.0,
15844
+ "markdownDescription": "The size a group of digits in the fractional part (after the decimal point) should be."
15845
+ },
15846
+ "groupLength": {
15847
+ "description": "The number of digits per group when inserting numeric separators.\nFor example, a `groupLength` of 3 formats `1234567` as `1_234_567`.",
15848
+ "default": 0,
15849
+ "type": "integer",
15850
+ "format": "uint32",
15851
+ "minimum": 0.0,
15852
+ "markdownDescription": "The number of digits per group when inserting numeric separators.\nFor example, a `groupLength` of 3 formats `1234567` as `1_234_567`."
15853
+ },
15854
+ "minimumDigits": {
15855
+ "description": "The minimum number of digits required before grouping is applied.\nValues with fewer digits than this threshold will not be grouped.",
15856
+ "default": 0,
15857
+ "type": "integer",
15858
+ "format": "uint32",
15859
+ "minimum": 0.0,
15860
+ "markdownDescription": "The minimum number of digits required before grouping is applied.\nValues with fewer digits than this threshold will not be grouped."
15861
+ },
15862
+ "onlyIfContainsSeparator": {
15863
+ "description": "Only enforce the rule when the numeric literal already contains a separator (`_`).\n\nWhen `true`, numbers without separators are left as-is; when `false` (default),\ngrouping will be enforced for eligible numbers even if they don't include separators yet.",
15864
+ "type": "boolean",
15865
+ "markdownDescription": "Only enforce the rule when the numeric literal already contains a separator (`_`).\n\nWhen `true`, numbers without separators are left as-is; when `false` (default),\ngrouping will be enforced for eligible numbers even if they don't include separators yet."
15866
+ }
15867
+ },
15868
+ "additionalProperties": false
15869
+ },
15870
+ "NumericSeparatorsStyleConfig": {
15871
+ "type": "object",
15872
+ "properties": {
15873
+ "binary": {
15874
+ "description": "Configuration for binary literals (e.g. `0b1010_0001` and bigint variants).\nControls how digits are grouped and when separators are applied.",
15875
+ "default": {
15876
+ "groupLength": 4,
15877
+ "minimumDigits": 0
15878
+ },
15879
+ "allOf": [
15880
+ {
15881
+ "$ref": "#/definitions/NumericBaseConfig"
15882
+ }
15883
+ ],
15884
+ "markdownDescription": "Configuration for binary literals (e.g. `0b1010_0001` and bigint variants).\nControls how digits are grouped and when separators are applied."
15885
+ },
15886
+ "hexadecimal": {
15887
+ "description": "Configuration for hexadecimal literals (e.g. `0xAB_CD`, `0Xab_cd`, and bigint variants).\nControls how digits are grouped and when separators are applied.",
15888
+ "default": {
15889
+ "groupLength": 2,
15890
+ "minimumDigits": 0
15891
+ },
15892
+ "allOf": [
15893
+ {
15894
+ "$ref": "#/definitions/NumericBaseConfig"
15895
+ }
15896
+ ],
15897
+ "markdownDescription": "Configuration for hexadecimal literals (e.g. `0xAB_CD`, `0Xab_cd`, and bigint variants).\nControls how digits are grouped and when separators are applied."
15898
+ },
15899
+ "number": {
15900
+ "description": "Configuration for decimal numbers (integers, fraction parts, and exponents).\nControls how digits are grouped and when separators are applied.",
15901
+ "allOf": [
15902
+ {
15903
+ "$ref": "#/definitions/NumericNumberConfig"
15904
+ }
15905
+ ],
15906
+ "markdownDescription": "Configuration for decimal numbers (integers, fraction parts, and exponents).\nControls how digits are grouped and when separators are applied."
15907
+ },
15908
+ "octal": {
15909
+ "description": "Configuration for octal literals (e.g. `0o1234_5670` and bigint variants).\nControls how digits are grouped and when separators are applied.",
15910
+ "default": {
15911
+ "groupLength": 4,
15912
+ "minimumDigits": 0
15913
+ },
15914
+ "allOf": [
15915
+ {
15916
+ "$ref": "#/definitions/NumericBaseConfig"
15917
+ }
15918
+ ],
15919
+ "markdownDescription": "Configuration for octal literals (e.g. `0o1234_5670` and bigint variants).\nControls how digits are grouped and when separators are applied."
15920
+ },
15921
+ "onlyIfContainsSeparator": {
15922
+ "description": "Only enforce the rule when the numeric literal already contains a separator (`_`).\n\nWhen `true`, numbers without separators are left as-is; when `false` (default),\ngrouping will be enforced for eligible numbers even if they don't include separators yet.",
15923
+ "default": false,
15924
+ "type": "boolean",
15925
+ "markdownDescription": "Only enforce the rule when the numeric literal already contains a separator (`_`).\n\nWhen `true`, numbers without separators are left as-is; when `false` (default),\ngrouping will be enforced for eligible numbers even if they don't include separators yet."
15926
+ }
15927
+ },
15928
+ "additionalProperties": false
15929
+ },
15092
15930
  "ObjectLiteralTypeAssertions": {
15093
15931
  "oneOf": [
15094
15932
  {
@@ -15654,6 +16492,52 @@
15654
16492
  },
15655
16493
  "additionalProperties": false
15656
16494
  },
16495
+ "PathGroupAction": {
16496
+ "description": "Action to take for path group overrides.\n\nDetermines how import extensions are validated for matching bespoke import specifiers.",
16497
+ "oneOf": [
16498
+ {
16499
+ "description": "Enforce extension validation for matching imports (require extensions based on config).",
16500
+ "type": "string",
16501
+ "enum": [
16502
+ "enforce"
16503
+ ],
16504
+ "markdownDescription": "Enforce extension validation for matching imports (require extensions based on config)."
16505
+ },
16506
+ {
16507
+ "description": "Ignore matching imports entirely (skip all extension validation).",
16508
+ "type": "string",
16509
+ "enum": [
16510
+ "ignore"
16511
+ ],
16512
+ "markdownDescription": "Ignore matching imports entirely (skip all extension validation)."
16513
+ }
16514
+ ],
16515
+ "markdownDescription": "Action to take for path group overrides.\n\nDetermines how import extensions are validated for matching bespoke import specifiers."
16516
+ },
16517
+ "PathGroupOverrideConfig": {
16518
+ "type": "object",
16519
+ "required": [
16520
+ "action",
16521
+ "pattern"
16522
+ ],
16523
+ "properties": {
16524
+ "action": {
16525
+ "description": "Action to take when pattern matches.",
16526
+ "allOf": [
16527
+ {
16528
+ "$ref": "#/definitions/PathGroupAction"
16529
+ }
16530
+ ],
16531
+ "markdownDescription": "Action to take when pattern matches."
16532
+ },
16533
+ "pattern": {
16534
+ "description": "Glob pattern to match import specifiers.",
16535
+ "type": "string",
16536
+ "markdownDescription": "Glob pattern to match import specifiers."
16537
+ }
16538
+ },
16539
+ "additionalProperties": false
16540
+ },
15657
16541
  "PathOption": {
15658
16542
  "oneOf": [
15659
16543
  {
@@ -15796,6 +16680,63 @@
15796
16680
  },
15797
16681
  "additionalProperties": false
15798
16682
  },
16683
+ "PreferDestructuringAssignmentConfig": {
16684
+ "type": "object",
16685
+ "properties": {
16686
+ "AssignmentExpression": {
16687
+ "$ref": "#/definitions/PreferDestructuringTargetOption"
16688
+ },
16689
+ "VariableDeclarator": {
16690
+ "$ref": "#/definitions/PreferDestructuringTargetOption"
16691
+ }
16692
+ },
16693
+ "additionalProperties": false
16694
+ },
16695
+ "PreferDestructuringConfig": {
16696
+ "type": "array",
16697
+ "items": [
16698
+ {
16699
+ "$ref": "#/definitions/PreferDestructuringOption"
16700
+ },
16701
+ {
16702
+ "$ref": "#/definitions/PreferDestructuringRenamedPropertiesConfig"
16703
+ }
16704
+ ],
16705
+ "maxItems": 2,
16706
+ "minItems": 2
16707
+ },
16708
+ "PreferDestructuringOption": {
16709
+ "anyOf": [
16710
+ {
16711
+ "$ref": "#/definitions/PreferDestructuringTargetOption"
16712
+ },
16713
+ {
16714
+ "$ref": "#/definitions/PreferDestructuringAssignmentConfig"
16715
+ }
16716
+ ]
16717
+ },
16718
+ "PreferDestructuringRenamedPropertiesConfig": {
16719
+ "type": "object",
16720
+ "properties": {
16721
+ "enforceForRenamedProperties": {
16722
+ "default": false,
16723
+ "type": "boolean"
16724
+ }
16725
+ },
16726
+ "additionalProperties": false
16727
+ },
16728
+ "PreferDestructuringTargetOption": {
16729
+ "type": "object",
16730
+ "properties": {
16731
+ "array": {
16732
+ "type": "boolean"
16733
+ },
16734
+ "object": {
16735
+ "type": "boolean"
16736
+ }
16737
+ },
16738
+ "additionalProperties": false
16739
+ },
15799
16740
  "PreferEndingWithAnExpectConfig": {
15800
16741
  "type": "object",
15801
16742
  "properties": {
@@ -16334,6 +17275,53 @@
16334
17275
  "additionalProperties": false,
16335
17276
  "markdownDescription": "A prop with optional `disallowedFor` DOM node list and custom `message`."
16336
17277
  },
17278
+ "PropertyDetails": {
17279
+ "type": "object",
17280
+ "properties": {
17281
+ "allowObjects": {
17282
+ "description": "Objects where property access should be allowed. This must be used with `property` and\ncannot be used with `object`.",
17283
+ "default": null,
17284
+ "type": "array",
17285
+ "items": {
17286
+ "type": "string"
17287
+ },
17288
+ "markdownDescription": "Objects where property access should be allowed. This must be used with `property` and\ncannot be used with `object`."
17289
+ },
17290
+ "allowProperties": {
17291
+ "description": "Properties where property access should be allowed. This must be used with `object` and\ncannot be used with `property`.",
17292
+ "default": null,
17293
+ "type": "array",
17294
+ "items": {
17295
+ "type": "string"
17296
+ },
17297
+ "markdownDescription": "Properties where property access should be allowed. This must be used with `object` and\ncannot be used with `property`."
17298
+ },
17299
+ "message": {
17300
+ "description": "A custom message to display.",
17301
+ "default": null,
17302
+ "type": "string",
17303
+ "markdownDescription": "A custom message to display."
17304
+ },
17305
+ "object": {
17306
+ "description": "The object on which the property is being accessed.",
17307
+ "default": null,
17308
+ "type": "string",
17309
+ "markdownDescription": "The object on which the property is being accessed."
17310
+ },
17311
+ "property": {
17312
+ "description": "The property being accessed. If `object` is not specified, this applies to the named\nproperty on all objects.",
17313
+ "default": null,
17314
+ "type": "string",
17315
+ "markdownDescription": "The property being accessed. If `object` is not specified, this applies to the named\nproperty on all objects."
17316
+ }
17317
+ },
17318
+ "additionalProperties": false
17319
+ },
17320
+ "PropertyDetailsList": {
17321
+ "additionalItems": {
17322
+ "$ref": "#/definitions/PropertyDetails"
17323
+ }
17324
+ },
16337
17325
  "RadixType": {
16338
17326
  "oneOf": [
16339
17327
  {
@@ -16534,6 +17522,42 @@
16534
17522
  },
16535
17523
  "additionalProperties": false
16536
17524
  },
17525
+ "RequireParamDescriptionConfig": {
17526
+ "type": "object",
17527
+ "properties": {
17528
+ "defaultDestructuredRootDescription": {
17529
+ "description": "The description string to set by default for destructured roots. Defaults to \"The root object\".",
17530
+ "default": "The root object",
17531
+ "type": "string",
17532
+ "markdownDescription": "The description string to set by default for destructured roots. Defaults to \"The root object\"."
17533
+ },
17534
+ "setDefaultDestructuredRootDescription": {
17535
+ "description": "Whether to set a default destructured root description.\nFor example, you may wish to avoid manually having to set the description for a @param corresponding to a destructured root object as it should always be the same type of object.\nUses `defaultDestructuredRootDescription` for the description string. Defaults to `false`.",
17536
+ "default": false,
17537
+ "type": "boolean",
17538
+ "markdownDescription": "Whether to set a default destructured root description.\nFor example, you may wish to avoid manually having to set the description for a @param corresponding to a destructured root object as it should always be the same type of object.\nUses `defaultDestructuredRootDescription` for the description string. Defaults to `false`."
17539
+ }
17540
+ },
17541
+ "additionalProperties": false
17542
+ },
17543
+ "RequireParamTypeConfig": {
17544
+ "type": "object",
17545
+ "properties": {
17546
+ "defaultDestructuredRootType": {
17547
+ "description": "The type string to set by default for destructured roots. Defaults to \"object\".",
17548
+ "default": "object",
17549
+ "type": "string",
17550
+ "markdownDescription": "The type string to set by default for destructured roots. Defaults to \"object\"."
17551
+ },
17552
+ "setDefaultDestructuredRootType": {
17553
+ "description": "Whether to set a default destructured root type. For example, you may wish to avoid manually having to set the type for a `@param` corresponding to a destructured root object as it is always going to be an object. Uses `defaultDestructuredRootType` for the type string. Defaults to `false`.",
17554
+ "default": false,
17555
+ "type": "boolean",
17556
+ "markdownDescription": "Whether to set a default destructured root type. For example, you may wish to avoid manually having to set the type for a `@param` corresponding to a destructured root object as it is always going to be an object. Uses `defaultDestructuredRootType` for the type string. Defaults to `false`."
17557
+ }
17558
+ },
17559
+ "additionalProperties": false
17560
+ },
16537
17561
  "RequireReturnsConfig": {
16538
17562
  "type": "object",
16539
17563
  "properties": {