@biomejs/wasm-web 2.1.1 → 2.1.2

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/biome_wasm.d.ts CHANGED
@@ -1510,6 +1510,10 @@ interface Nursery {
1510
1510
  * Disallow the use of useless undefined.
1511
1511
  */
1512
1512
  noUselessUndefined?: RuleFixConfiguration_for_NoUselessUndefinedOptions;
1513
+ /**
1514
+ * Disallow reserved names to be used as props.
1515
+ */
1516
+ noVueReservedProps?: RuleConfiguration_for_NoVueReservedPropsOptions;
1513
1517
  /**
1514
1518
  * It enables the recommended rules for this group
1515
1519
  */
@@ -2756,6 +2760,9 @@ type RuleFixConfiguration_for_NoUselessEscapeInStringOptions =
2756
2760
  type RuleFixConfiguration_for_NoUselessUndefinedOptions =
2757
2761
  | RulePlainConfiguration
2758
2762
  | RuleWithFixOptions_for_NoUselessUndefinedOptions;
2763
+ type RuleConfiguration_for_NoVueReservedPropsOptions =
2764
+ | RulePlainConfiguration
2765
+ | RuleWithOptions_for_NoVueReservedPropsOptions;
2759
2766
  type RuleConfiguration_for_UseAdjacentGetterSetterOptions =
2760
2767
  | RulePlainConfiguration
2761
2768
  | RuleWithOptions_for_UseAdjacentGetterSetterOptions;
@@ -5134,6 +5141,16 @@ interface RuleWithFixOptions_for_NoUselessUndefinedOptions {
5134
5141
  */
5135
5142
  options: NoUselessUndefinedOptions;
5136
5143
  }
5144
+ interface RuleWithOptions_for_NoVueReservedPropsOptions {
5145
+ /**
5146
+ * The severity of the emitted diagnostics by the rule
5147
+ */
5148
+ level: RulePlainConfiguration;
5149
+ /**
5150
+ * Rule's options
5151
+ */
5152
+ options: NoVueReservedPropsOptions;
5153
+ }
5137
5154
  interface RuleWithOptions_for_UseAdjacentGetterSetterOptions {
5138
5155
  /**
5139
5156
  * The severity of the emitted diagnostics by the rule
@@ -7509,6 +7526,7 @@ interface NoUnwantedPolyfillioOptions {}
7509
7526
  interface NoUselessBackrefInRegexOptions {}
7510
7527
  interface NoUselessEscapeInStringOptions {}
7511
7528
  interface NoUselessUndefinedOptions {}
7529
+ interface NoVueReservedPropsOptions {}
7512
7530
  interface UseAdjacentGetterSetterOptions {}
7513
7531
  interface UseConsistentObjectDefinitionOptions {
7514
7532
  /**
@@ -7562,7 +7580,12 @@ interface UseSortedClassesOptions {
7562
7580
  }
7563
7581
  interface UseSymbolDescriptionOptions {}
7564
7582
  interface UseUnifiedTypeSignatureOptions {}
7565
- interface UseUniqueElementIdsOptions {}
7583
+ interface UseUniqueElementIdsOptions {
7584
+ /**
7585
+ * Component names that accept an `id` prop that does not translate to a DOM element id.
7586
+ */
7587
+ excludedComponents?: string[];
7588
+ }
7566
7589
  interface NoAccumulatingSpreadOptions {}
7567
7590
  interface NoBarrelFileOptions {}
7568
7591
  interface NoDeleteOptions {}
@@ -8161,6 +8184,7 @@ type Category =
8161
8184
  | "lint/nursery/noUselessBackrefInRegex"
8162
8185
  | "lint/nursery/noUselessEscapeInString"
8163
8186
  | "lint/nursery/noUselessUndefined"
8187
+ | "lint/nursery/noVueReservedProps"
8164
8188
  | "lint/nursery/useAdjacentGetterSetter"
8165
8189
  | "lint/nursery/useBiomeSuppressionComment"
8166
8190
  | "lint/nursery/useConsistentObjectDefinition"
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Biome Developers and Contributors"
6
6
  ],
7
7
  "description": "WebAssembly bindings to the Biome workspace API",
8
- "version": "2.1.1",
8
+ "version": "2.1.2",
9
9
  "license": "MIT OR Apache-2.0",
10
10
  "repository": {
11
11
  "type": "git",