@biomejs/wasm-nodejs 2.3.6 → 2.3.7

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
@@ -1945,6 +1945,11 @@ See https://biomejs.dev/linter/rules/use-vue-valid-v-if
1945
1945
  See https://biomejs.dev/linter/rules/use-vue-valid-v-on
1946
1946
  */
1947
1947
  useVueValidVOn?: UseVueValidVOnConfiguration;
1948
+ /**
1949
+ * Enforce valid v-text Vue directives.
1950
+ See https://biomejs.dev/linter/rules/use-vue-valid-v-text
1951
+ */
1952
+ useVueValidVText?: UseVueValidVTextConfiguration;
1948
1953
  }
1949
1954
  interface Performance {
1950
1955
  /**
@@ -3483,6 +3488,9 @@ type UseVueValidVIfConfiguration =
3483
3488
  type UseVueValidVOnConfiguration =
3484
3489
  | RulePlainConfiguration
3485
3490
  | RuleWithUseVueValidVOnOptions;
3491
+ type UseVueValidVTextConfiguration =
3492
+ | RulePlainConfiguration
3493
+ | RuleWithUseVueValidVTextOptions;
3486
3494
  type NoAccumulatingSpreadConfiguration =
3487
3495
  | RulePlainConfiguration
3488
3496
  | RuleWithNoAccumulatingSpreadOptions;
@@ -4895,6 +4903,10 @@ interface RuleWithUseVueValidVOnOptions {
4895
4903
  level: RulePlainConfiguration;
4896
4904
  options?: UseVueValidVOnOptions;
4897
4905
  }
4906
+ interface RuleWithUseVueValidVTextOptions {
4907
+ level: RulePlainConfiguration;
4908
+ options?: UseVueValidVTextOptions;
4909
+ }
4898
4910
  interface RuleWithNoAccumulatingSpreadOptions {
4899
4911
  level: RulePlainConfiguration;
4900
4912
  options?: NoAccumulatingSpreadOptions;
@@ -6124,6 +6136,7 @@ interface UseVueValidVOnOptions {
6124
6136
  */
6125
6137
  modifiers?: string[];
6126
6138
  }
6139
+ type UseVueValidVTextOptions = {};
6127
6140
  type NoAccumulatingSpreadOptions = {};
6128
6141
  type NoAwaitInLoopsOptions = {};
6129
6142
  type NoBarrelFileOptions = {};
@@ -6864,6 +6877,7 @@ type Category =
6864
6877
  | "lint/nursery/useVueValidVIf"
6865
6878
  | "lint/nursery/useVueValidVModel"
6866
6879
  | "lint/nursery/useVueValidVOn"
6880
+ | "lint/nursery/useVueValidVText"
6867
6881
  | "lint/performance/noAccumulatingSpread"
6868
6882
  | "lint/performance/noAwaitInLoops"
6869
6883
  | "lint/performance/noBarrelFile"
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.6",
7
+ "version": "2.3.7",
8
8
  "license": "MIT OR Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",