@biomejs/biome 2.4.11 → 2.4.12
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/configuration_schema.json +243 -0
- package/package.json +9 -9
|
@@ -2902,6 +2902,16 @@
|
|
|
2902
2902
|
"type": "object",
|
|
2903
2903
|
"additionalProperties": false
|
|
2904
2904
|
},
|
|
2905
|
+
"NoComponentHookFactoriesConfiguration": {
|
|
2906
|
+
"oneOf": [
|
|
2907
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
2908
|
+
{ "$ref": "#/$defs/RuleWithNoComponentHookFactoriesOptions" }
|
|
2909
|
+
]
|
|
2910
|
+
},
|
|
2911
|
+
"NoComponentHookFactoriesOptions": {
|
|
2912
|
+
"type": "object",
|
|
2913
|
+
"additionalProperties": false
|
|
2914
|
+
},
|
|
2905
2915
|
"NoConditionalExpectConfiguration": {
|
|
2906
2916
|
"oneOf": [
|
|
2907
2917
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -3687,6 +3697,25 @@
|
|
|
3687
3697
|
"type": "object",
|
|
3688
3698
|
"additionalProperties": false
|
|
3689
3699
|
},
|
|
3700
|
+
"NoExcessiveSelectorClassesConfiguration": {
|
|
3701
|
+
"oneOf": [
|
|
3702
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
3703
|
+
{ "$ref": "#/$defs/RuleWithNoExcessiveSelectorClassesOptions" }
|
|
3704
|
+
]
|
|
3705
|
+
},
|
|
3706
|
+
"NoExcessiveSelectorClassesOptions": {
|
|
3707
|
+
"type": "object",
|
|
3708
|
+
"properties": {
|
|
3709
|
+
"maxClasses": {
|
|
3710
|
+
"description": "The maximum number of class selectors allowed in a single selector.\n\nThis option is required to enable the rule.\nUse `0` to disallow class selectors entirely.",
|
|
3711
|
+
"type": ["integer", "null"],
|
|
3712
|
+
"format": "uint16",
|
|
3713
|
+
"maximum": 65535,
|
|
3714
|
+
"minimum": 0
|
|
3715
|
+
}
|
|
3716
|
+
},
|
|
3717
|
+
"additionalProperties": false
|
|
3718
|
+
},
|
|
3690
3719
|
"NoExplicitAnyConfiguration": {
|
|
3691
3720
|
"oneOf": [
|
|
3692
3721
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -3903,6 +3932,16 @@
|
|
|
3903
3932
|
]
|
|
3904
3933
|
},
|
|
3905
3934
|
"NoHexColorsOptions": { "type": "object", "additionalProperties": false },
|
|
3935
|
+
"NoIdenticalTestTitleConfiguration": {
|
|
3936
|
+
"oneOf": [
|
|
3937
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
3938
|
+
{ "$ref": "#/$defs/RuleWithNoIdenticalTestTitleOptions" }
|
|
3939
|
+
]
|
|
3940
|
+
},
|
|
3941
|
+
"NoIdenticalTestTitleOptions": {
|
|
3942
|
+
"type": "object",
|
|
3943
|
+
"additionalProperties": false
|
|
3944
|
+
},
|
|
3906
3945
|
"NoImgElementConfiguration": {
|
|
3907
3946
|
"oneOf": [
|
|
3908
3947
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -4146,6 +4185,16 @@
|
|
|
4146
4185
|
},
|
|
4147
4186
|
"additionalProperties": false
|
|
4148
4187
|
},
|
|
4188
|
+
"NoJsxNamespaceConfiguration": {
|
|
4189
|
+
"oneOf": [
|
|
4190
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
4191
|
+
{ "$ref": "#/$defs/RuleWithNoJsxNamespaceOptions" }
|
|
4192
|
+
]
|
|
4193
|
+
},
|
|
4194
|
+
"NoJsxNamespaceOptions": {
|
|
4195
|
+
"type": "object",
|
|
4196
|
+
"additionalProperties": false
|
|
4197
|
+
},
|
|
4149
4198
|
"NoJsxPropsBindConfiguration": {
|
|
4150
4199
|
"oneOf": [
|
|
4151
4200
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -5935,6 +5984,13 @@
|
|
|
5935
5984
|
{ "type": "null" }
|
|
5936
5985
|
]
|
|
5937
5986
|
},
|
|
5987
|
+
"noComponentHookFactories": {
|
|
5988
|
+
"description": "Disallows defining React components or custom hooks inside other functions.\nSee https://biomejs.dev/linter/rules/no-component-hook-factories",
|
|
5989
|
+
"anyOf": [
|
|
5990
|
+
{ "$ref": "#/$defs/NoComponentHookFactoriesConfiguration" },
|
|
5991
|
+
{ "type": "null" }
|
|
5992
|
+
]
|
|
5993
|
+
},
|
|
5938
5994
|
"noConditionalExpect": {
|
|
5939
5995
|
"description": "Disallow conditional expect() calls inside tests.\nSee https://biomejs.dev/linter/rules/no-conditional-expect",
|
|
5940
5996
|
"anyOf": [
|
|
@@ -6075,6 +6131,13 @@
|
|
|
6075
6131
|
{ "type": "null" }
|
|
6076
6132
|
]
|
|
6077
6133
|
},
|
|
6134
|
+
"noExcessiveSelectorClasses": {
|
|
6135
|
+
"description": "Limit the number of classes in a selector.\nSee https://biomejs.dev/linter/rules/no-excessive-selector-classes",
|
|
6136
|
+
"anyOf": [
|
|
6137
|
+
{ "$ref": "#/$defs/NoExcessiveSelectorClassesConfiguration" },
|
|
6138
|
+
{ "type": "null" }
|
|
6139
|
+
]
|
|
6140
|
+
},
|
|
6078
6141
|
"noFloatingClasses": {
|
|
6079
6142
|
"description": "Disallow new operators outside of assignments or comparisons.\nSee https://biomejs.dev/linter/rules/no-floating-classes",
|
|
6080
6143
|
"anyOf": [
|
|
@@ -6103,6 +6166,13 @@
|
|
|
6103
6166
|
{ "type": "null" }
|
|
6104
6167
|
]
|
|
6105
6168
|
},
|
|
6169
|
+
"noIdenticalTestTitle": {
|
|
6170
|
+
"description": "Disallow identical titles in test suites and test cases.\nSee https://biomejs.dev/linter/rules/no-identical-test-title",
|
|
6171
|
+
"anyOf": [
|
|
6172
|
+
{ "$ref": "#/$defs/NoIdenticalTestTitleConfiguration" },
|
|
6173
|
+
{ "type": "null" }
|
|
6174
|
+
]
|
|
6175
|
+
},
|
|
6106
6176
|
"noImpliedEval": {
|
|
6107
6177
|
"description": "Disallow the use of eval()-like methods.\nSee https://biomejs.dev/linter/rules/no-implied-eval",
|
|
6108
6178
|
"anyOf": [
|
|
@@ -6124,6 +6194,13 @@
|
|
|
6124
6194
|
{ "type": "null" }
|
|
6125
6195
|
]
|
|
6126
6196
|
},
|
|
6197
|
+
"noJsxNamespace": {
|
|
6198
|
+
"description": "Disallow JSX namespace syntax.\nSee https://biomejs.dev/linter/rules/no-jsx-namespace",
|
|
6199
|
+
"anyOf": [
|
|
6200
|
+
{ "$ref": "#/$defs/NoJsxNamespaceConfiguration" },
|
|
6201
|
+
{ "type": "null" }
|
|
6202
|
+
]
|
|
6203
|
+
},
|
|
6127
6204
|
"noJsxPropsBind": {
|
|
6128
6205
|
"description": "Disallow .bind(), arrow functions, or function expressions in JSX props.\nSee https://biomejs.dev/linter/rules/no-jsx-props-bind",
|
|
6129
6206
|
"anyOf": [
|
|
@@ -6513,6 +6590,13 @@
|
|
|
6513
6590
|
{ "type": "null" }
|
|
6514
6591
|
]
|
|
6515
6592
|
},
|
|
6593
|
+
"useIframeSandbox": {
|
|
6594
|
+
"description": "Enforce the 'sandbox' attribute for 'iframe' elements.\nSee https://biomejs.dev/linter/rules/use-iframe-sandbox",
|
|
6595
|
+
"anyOf": [
|
|
6596
|
+
{ "$ref": "#/$defs/UseIframeSandboxConfiguration" },
|
|
6597
|
+
{ "type": "null" }
|
|
6598
|
+
]
|
|
6599
|
+
},
|
|
6516
6600
|
"useImportsFirst": {
|
|
6517
6601
|
"description": "Enforce that all imports appear at the top of the module.\nSee https://biomejs.dev/linter/rules/use-imports-first",
|
|
6518
6602
|
"anyOf": [
|
|
@@ -6578,6 +6662,20 @@
|
|
|
6578
6662
|
{ "type": "null" }
|
|
6579
6663
|
]
|
|
6580
6664
|
},
|
|
6665
|
+
"useReactAsyncServerFunction": {
|
|
6666
|
+
"description": "Require functions with the \"use server\" directive to be async.\nSee https://biomejs.dev/linter/rules/use-react-async-server-function",
|
|
6667
|
+
"anyOf": [
|
|
6668
|
+
{ "$ref": "#/$defs/UseReactAsyncServerFunctionConfiguration" },
|
|
6669
|
+
{ "type": "null" }
|
|
6670
|
+
]
|
|
6671
|
+
},
|
|
6672
|
+
"useReduceTypeParameter": {
|
|
6673
|
+
"description": "Enforce using a type parameter on Array#reduce instead of casting the initial value.\nSee https://biomejs.dev/linter/rules/use-reduce-type-parameter",
|
|
6674
|
+
"anyOf": [
|
|
6675
|
+
{ "$ref": "#/$defs/UseReduceTypeParameterConfiguration" },
|
|
6676
|
+
{ "type": "null" }
|
|
6677
|
+
]
|
|
6678
|
+
},
|
|
6581
6679
|
"useRegexpExec": {
|
|
6582
6680
|
"description": "Enforce RegExp#exec over String#match if no global flag is provided.\nSee https://biomejs.dev/linter/rules/use-regexp-exec",
|
|
6583
6681
|
"anyOf": [
|
|
@@ -6613,6 +6711,13 @@
|
|
|
6613
6711
|
{ "type": "null" }
|
|
6614
6712
|
]
|
|
6615
6713
|
},
|
|
6714
|
+
"useStringStartsEndsWith": {
|
|
6715
|
+
"description": "Prefer String#startsWith() and String#endsWith() over verbose prefix and suffix checks.\nSee https://biomejs.dev/linter/rules/use-string-starts-ends-with",
|
|
6716
|
+
"anyOf": [
|
|
6717
|
+
{ "$ref": "#/$defs/UseStringStartsEndsWithConfiguration" },
|
|
6718
|
+
{ "type": "null" }
|
|
6719
|
+
]
|
|
6720
|
+
},
|
|
6616
6721
|
"useUnicodeRegex": {
|
|
6617
6722
|
"description": "Enforce the use of the u or v flag for regular expressions.\nSee https://biomejs.dev/linter/rules/use-unicode-regex",
|
|
6618
6723
|
"anyOf": [
|
|
@@ -6620,6 +6725,13 @@
|
|
|
6620
6725
|
{ "type": "null" }
|
|
6621
6726
|
]
|
|
6622
6727
|
},
|
|
6728
|
+
"useVarsOnTop": {
|
|
6729
|
+
"description": "Require var declarations to appear at the top of their containing scope.\nSee https://biomejs.dev/linter/rules/use-vars-on-top",
|
|
6730
|
+
"anyOf": [
|
|
6731
|
+
{ "$ref": "#/$defs/UseVarsOnTopConfiguration" },
|
|
6732
|
+
{ "type": "null" }
|
|
6733
|
+
]
|
|
6734
|
+
},
|
|
6623
6735
|
"useVueConsistentDefinePropsDeclaration": {
|
|
6624
6736
|
"description": "Enforce consistent defineProps declaration style.\nSee https://biomejs.dev/linter/rules/use-vue-consistent-define-props-declaration",
|
|
6625
6737
|
"anyOf": [
|
|
@@ -7562,6 +7674,15 @@
|
|
|
7562
7674
|
"additionalProperties": false,
|
|
7563
7675
|
"required": ["level"]
|
|
7564
7676
|
},
|
|
7677
|
+
"RuleWithNoComponentHookFactoriesOptions": {
|
|
7678
|
+
"type": "object",
|
|
7679
|
+
"properties": {
|
|
7680
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
7681
|
+
"options": { "$ref": "#/$defs/NoComponentHookFactoriesOptions" }
|
|
7682
|
+
},
|
|
7683
|
+
"additionalProperties": false,
|
|
7684
|
+
"required": ["level"]
|
|
7685
|
+
},
|
|
7565
7686
|
"RuleWithNoConditionalExpectOptions": {
|
|
7566
7687
|
"type": "object",
|
|
7567
7688
|
"properties": {
|
|
@@ -8199,6 +8320,15 @@
|
|
|
8199
8320
|
"additionalProperties": false,
|
|
8200
8321
|
"required": ["level"]
|
|
8201
8322
|
},
|
|
8323
|
+
"RuleWithNoExcessiveSelectorClassesOptions": {
|
|
8324
|
+
"type": "object",
|
|
8325
|
+
"properties": {
|
|
8326
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
8327
|
+
"options": { "$ref": "#/$defs/NoExcessiveSelectorClassesOptions" }
|
|
8328
|
+
},
|
|
8329
|
+
"additionalProperties": false,
|
|
8330
|
+
"required": ["level"]
|
|
8331
|
+
},
|
|
8202
8332
|
"RuleWithNoExplicitAnyOptions": {
|
|
8203
8333
|
"type": "object",
|
|
8204
8334
|
"properties": {
|
|
@@ -8415,6 +8545,15 @@
|
|
|
8415
8545
|
"additionalProperties": false,
|
|
8416
8546
|
"required": ["level"]
|
|
8417
8547
|
},
|
|
8548
|
+
"RuleWithNoIdenticalTestTitleOptions": {
|
|
8549
|
+
"type": "object",
|
|
8550
|
+
"properties": {
|
|
8551
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
8552
|
+
"options": { "$ref": "#/$defs/NoIdenticalTestTitleOptions" }
|
|
8553
|
+
},
|
|
8554
|
+
"additionalProperties": false,
|
|
8555
|
+
"required": ["level"]
|
|
8556
|
+
},
|
|
8418
8557
|
"RuleWithNoImgElementOptions": {
|
|
8419
8558
|
"type": "object",
|
|
8420
8559
|
"properties": {
|
|
@@ -8624,6 +8763,15 @@
|
|
|
8624
8763
|
"additionalProperties": false,
|
|
8625
8764
|
"required": ["level"]
|
|
8626
8765
|
},
|
|
8766
|
+
"RuleWithNoJsxNamespaceOptions": {
|
|
8767
|
+
"type": "object",
|
|
8768
|
+
"properties": {
|
|
8769
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
8770
|
+
"options": { "$ref": "#/$defs/NoJsxNamespaceOptions" }
|
|
8771
|
+
},
|
|
8772
|
+
"additionalProperties": false,
|
|
8773
|
+
"required": ["level"]
|
|
8774
|
+
},
|
|
8627
8775
|
"RuleWithNoJsxPropsBindOptions": {
|
|
8628
8776
|
"type": "object",
|
|
8629
8777
|
"properties": {
|
|
@@ -10843,6 +10991,15 @@
|
|
|
10843
10991
|
"additionalProperties": false,
|
|
10844
10992
|
"required": ["level"]
|
|
10845
10993
|
},
|
|
10994
|
+
"RuleWithUseIframeSandboxOptions": {
|
|
10995
|
+
"type": "object",
|
|
10996
|
+
"properties": {
|
|
10997
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
10998
|
+
"options": { "$ref": "#/$defs/UseIframeSandboxOptions" }
|
|
10999
|
+
},
|
|
11000
|
+
"additionalProperties": false,
|
|
11001
|
+
"required": ["level"]
|
|
11002
|
+
},
|
|
10846
11003
|
"RuleWithUseIframeTitleOptions": {
|
|
10847
11004
|
"type": "object",
|
|
10848
11005
|
"properties": {
|
|
@@ -11215,6 +11372,16 @@
|
|
|
11215
11372
|
"additionalProperties": false,
|
|
11216
11373
|
"required": ["level"]
|
|
11217
11374
|
},
|
|
11375
|
+
"RuleWithUseReactAsyncServerFunctionOptions": {
|
|
11376
|
+
"type": "object",
|
|
11377
|
+
"properties": {
|
|
11378
|
+
"fix": { "anyOf": [{ "$ref": "#/$defs/FixKind" }, { "type": "null" }] },
|
|
11379
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
11380
|
+
"options": { "$ref": "#/$defs/UseReactAsyncServerFunctionOptions" }
|
|
11381
|
+
},
|
|
11382
|
+
"additionalProperties": false,
|
|
11383
|
+
"required": ["level"]
|
|
11384
|
+
},
|
|
11218
11385
|
"RuleWithUseReactFunctionComponentsOptions": {
|
|
11219
11386
|
"type": "object",
|
|
11220
11387
|
"properties": {
|
|
@@ -11234,6 +11401,16 @@
|
|
|
11234
11401
|
"additionalProperties": false,
|
|
11235
11402
|
"required": ["level"]
|
|
11236
11403
|
},
|
|
11404
|
+
"RuleWithUseReduceTypeParameterOptions": {
|
|
11405
|
+
"type": "object",
|
|
11406
|
+
"properties": {
|
|
11407
|
+
"fix": { "anyOf": [{ "$ref": "#/$defs/FixKind" }, { "type": "null" }] },
|
|
11408
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
11409
|
+
"options": { "$ref": "#/$defs/UseReduceTypeParameterOptions" }
|
|
11410
|
+
},
|
|
11411
|
+
"additionalProperties": false,
|
|
11412
|
+
"required": ["level"]
|
|
11413
|
+
},
|
|
11237
11414
|
"RuleWithUseRegexLiteralsOptions": {
|
|
11238
11415
|
"type": "object",
|
|
11239
11416
|
"properties": {
|
|
@@ -11400,6 +11577,16 @@
|
|
|
11400
11577
|
"additionalProperties": false,
|
|
11401
11578
|
"required": ["level"]
|
|
11402
11579
|
},
|
|
11580
|
+
"RuleWithUseStringStartsEndsWithOptions": {
|
|
11581
|
+
"type": "object",
|
|
11582
|
+
"properties": {
|
|
11583
|
+
"fix": { "anyOf": [{ "$ref": "#/$defs/FixKind" }, { "type": "null" }] },
|
|
11584
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
11585
|
+
"options": { "$ref": "#/$defs/UseStringStartsEndsWithOptions" }
|
|
11586
|
+
},
|
|
11587
|
+
"additionalProperties": false,
|
|
11588
|
+
"required": ["level"]
|
|
11589
|
+
},
|
|
11403
11590
|
"RuleWithUseSymbolDescriptionOptions": {
|
|
11404
11591
|
"type": "object",
|
|
11405
11592
|
"properties": {
|
|
@@ -11561,6 +11748,15 @@
|
|
|
11561
11748
|
"additionalProperties": false,
|
|
11562
11749
|
"required": ["level"]
|
|
11563
11750
|
},
|
|
11751
|
+
"RuleWithUseVarsOnTopOptions": {
|
|
11752
|
+
"type": "object",
|
|
11753
|
+
"properties": {
|
|
11754
|
+
"level": { "$ref": "#/$defs/RulePlainConfiguration" },
|
|
11755
|
+
"options": { "$ref": "#/$defs/UseVarsOnTopOptions" }
|
|
11756
|
+
},
|
|
11757
|
+
"additionalProperties": false,
|
|
11758
|
+
"required": ["level"]
|
|
11759
|
+
},
|
|
11564
11760
|
"RuleWithUseVueConsistentDefinePropsDeclarationOptions": {
|
|
11565
11761
|
"type": "object",
|
|
11566
11762
|
"properties": {
|
|
@@ -14195,6 +14391,16 @@
|
|
|
14195
14391
|
]
|
|
14196
14392
|
},
|
|
14197
14393
|
"UseHtmlLangOptions": { "type": "object", "additionalProperties": false },
|
|
14394
|
+
"UseIframeSandboxConfiguration": {
|
|
14395
|
+
"oneOf": [
|
|
14396
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
14397
|
+
{ "$ref": "#/$defs/RuleWithUseIframeSandboxOptions" }
|
|
14398
|
+
]
|
|
14399
|
+
},
|
|
14400
|
+
"UseIframeSandboxOptions": {
|
|
14401
|
+
"type": "object",
|
|
14402
|
+
"additionalProperties": false
|
|
14403
|
+
},
|
|
14198
14404
|
"UseIframeTitleConfiguration": {
|
|
14199
14405
|
"oneOf": [
|
|
14200
14406
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -14653,6 +14859,16 @@
|
|
|
14653
14859
|
"type": "object",
|
|
14654
14860
|
"additionalProperties": false
|
|
14655
14861
|
},
|
|
14862
|
+
"UseReactAsyncServerFunctionConfiguration": {
|
|
14863
|
+
"oneOf": [
|
|
14864
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
14865
|
+
{ "$ref": "#/$defs/RuleWithUseReactAsyncServerFunctionOptions" }
|
|
14866
|
+
]
|
|
14867
|
+
},
|
|
14868
|
+
"UseReactAsyncServerFunctionOptions": {
|
|
14869
|
+
"type": "object",
|
|
14870
|
+
"additionalProperties": false
|
|
14871
|
+
},
|
|
14656
14872
|
"UseReactFunctionComponentsConfiguration": {
|
|
14657
14873
|
"oneOf": [
|
|
14658
14874
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -14679,6 +14895,16 @@
|
|
|
14679
14895
|
},
|
|
14680
14896
|
"additionalProperties": false
|
|
14681
14897
|
},
|
|
14898
|
+
"UseReduceTypeParameterConfiguration": {
|
|
14899
|
+
"oneOf": [
|
|
14900
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
14901
|
+
{ "$ref": "#/$defs/RuleWithUseReduceTypeParameterOptions" }
|
|
14902
|
+
]
|
|
14903
|
+
},
|
|
14904
|
+
"UseReduceTypeParameterOptions": {
|
|
14905
|
+
"type": "object",
|
|
14906
|
+
"additionalProperties": false
|
|
14907
|
+
},
|
|
14682
14908
|
"UseRegexLiteralsConfiguration": {
|
|
14683
14909
|
"oneOf": [
|
|
14684
14910
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -14915,6 +15141,16 @@
|
|
|
14915
15141
|
]
|
|
14916
15142
|
},
|
|
14917
15143
|
"UseStrictModeOptions": { "type": "object", "additionalProperties": false },
|
|
15144
|
+
"UseStringStartsEndsWithConfiguration": {
|
|
15145
|
+
"oneOf": [
|
|
15146
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
15147
|
+
{ "$ref": "#/$defs/RuleWithUseStringStartsEndsWithOptions" }
|
|
15148
|
+
]
|
|
15149
|
+
},
|
|
15150
|
+
"UseStringStartsEndsWithOptions": {
|
|
15151
|
+
"type": "object",
|
|
15152
|
+
"additionalProperties": false
|
|
15153
|
+
},
|
|
14918
15154
|
"UseSymbolDescriptionConfiguration": {
|
|
14919
15155
|
"oneOf": [
|
|
14920
15156
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
@@ -15115,6 +15351,13 @@
|
|
|
15115
15351
|
"type": "object",
|
|
15116
15352
|
"additionalProperties": false
|
|
15117
15353
|
},
|
|
15354
|
+
"UseVarsOnTopConfiguration": {
|
|
15355
|
+
"oneOf": [
|
|
15356
|
+
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
|
15357
|
+
{ "$ref": "#/$defs/RuleWithUseVarsOnTopOptions" }
|
|
15358
|
+
]
|
|
15359
|
+
},
|
|
15360
|
+
"UseVarsOnTopOptions": { "type": "object", "additionalProperties": false },
|
|
15118
15361
|
"UseVueConsistentDefinePropsDeclarationConfiguration": {
|
|
15119
15362
|
"oneOf": [
|
|
15120
15363
|
{ "$ref": "#/$defs/RulePlainConfiguration" },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biomejs/biome",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.12",
|
|
4
4
|
"bin": {
|
|
5
5
|
"biome": "bin/biome"
|
|
6
6
|
},
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"provenance": true
|
|
47
47
|
},
|
|
48
48
|
"optionalDependencies": {
|
|
49
|
-
"@biomejs/cli-win32-x64": "2.4.
|
|
50
|
-
"@biomejs/cli-win32-arm64": "2.4.
|
|
51
|
-
"@biomejs/cli-darwin-x64": "2.4.
|
|
52
|
-
"@biomejs/cli-darwin-arm64": "2.4.
|
|
53
|
-
"@biomejs/cli-linux-x64": "2.4.
|
|
54
|
-
"@biomejs/cli-linux-arm64": "2.4.
|
|
55
|
-
"@biomejs/cli-linux-x64-musl": "2.4.
|
|
56
|
-
"@biomejs/cli-linux-arm64-musl": "2.4.
|
|
49
|
+
"@biomejs/cli-win32-x64": "2.4.12",
|
|
50
|
+
"@biomejs/cli-win32-arm64": "2.4.12",
|
|
51
|
+
"@biomejs/cli-darwin-x64": "2.4.12",
|
|
52
|
+
"@biomejs/cli-darwin-arm64": "2.4.12",
|
|
53
|
+
"@biomejs/cli-linux-x64": "2.4.12",
|
|
54
|
+
"@biomejs/cli-linux-arm64": "2.4.12",
|
|
55
|
+
"@biomejs/cli-linux-x64-musl": "2.4.12",
|
|
56
|
+
"@biomejs/cli-linux-arm64-musl": "2.4.12"
|
|
57
57
|
}
|
|
58
58
|
}
|