@biomejs/wasm-nodejs 2.3.12 → 2.3.13

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
@@ -1993,6 +1993,11 @@ See https://biomejs.dev/linter/rules/use-consistent-arrow-return
1993
1993
  */
1994
1994
  useConsistentArrowReturn?: UseConsistentArrowReturnConfiguration;
1995
1995
  /**
1996
+ * Disallow enums from having both number and string members.
1997
+ See https://biomejs.dev/linter/rules/use-consistent-enum-value-type
1998
+ */
1999
+ useConsistentEnumValueType?: UseConsistentEnumValueTypeConfiguration;
2000
+ /**
1996
2001
  * Require all descriptions to follow the same style (either block or inline) to maintain consistency and improve readability across the schema.
1997
2002
  See https://biomejs.dev/linter/rules/use-consistent-graphql-descriptions
1998
2003
  */
@@ -3737,6 +3742,9 @@ type UseAwaitThenableConfiguration =
3737
3742
  type UseConsistentArrowReturnConfiguration =
3738
3743
  | RulePlainConfiguration
3739
3744
  | RuleWithUseConsistentArrowReturnOptions;
3745
+ type UseConsistentEnumValueTypeConfiguration =
3746
+ | RulePlainConfiguration
3747
+ | RuleWithUseConsistentEnumValueTypeOptions;
3740
3748
  type UseConsistentGraphqlDescriptionsConfiguration =
3741
3749
  | RulePlainConfiguration
3742
3750
  | RuleWithUseConsistentGraphqlDescriptionsOptions;
@@ -5286,6 +5294,10 @@ interface RuleWithUseConsistentArrowReturnOptions {
5286
5294
  level: RulePlainConfiguration;
5287
5295
  options?: UseConsistentArrowReturnOptions;
5288
5296
  }
5297
+ interface RuleWithUseConsistentEnumValueTypeOptions {
5298
+ level: RulePlainConfiguration;
5299
+ options?: UseConsistentEnumValueTypeOptions;
5300
+ }
5289
5301
  interface RuleWithUseConsistentGraphqlDescriptionsOptions {
5290
5302
  level: RulePlainConfiguration;
5291
5303
  options?: UseConsistentGraphqlDescriptionsOptions;
@@ -6668,6 +6680,7 @@ This option is only applicable when used in conjunction with the `asNeeded` opti
6668
6680
  */
6669
6681
  style?: UseConsistentArrowReturnStyle;
6670
6682
  }
6683
+ type UseConsistentEnumValueTypeOptions = {};
6671
6684
  interface UseConsistentGraphqlDescriptionsOptions {
6672
6685
  /**
6673
6686
  * The description style to enforce. Defaults to "block"
@@ -7484,6 +7497,7 @@ type Category =
7484
7497
  | "lint/nursery/noLeakedRender"
7485
7498
  | "lint/nursery/noMissingGenericFamilyKeyword"
7486
7499
  | "lint/nursery/noMisusedPromises"
7500
+ | "lint/nursery/useConsistentEnumValueType"
7487
7501
  | "lint/nursery/noMultiAssign"
7488
7502
  | "lint/nursery/noMultiStr"
7489
7503
  | "lint/nursery/noNextAsyncClientComponent"
Binary file
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "Biome Developers and Contributors"
5
5
  ],
6
6
  "description": "WebAssembly bindings to the Biome workspace API",
7
- "version": "2.3.12",
7
+ "version": "2.3.13",
8
8
  "license": "MIT OR Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",