@biomejs/wasm-bundler 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 +14 -0
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
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"
|
package/biome_wasm_bg.wasm
CHANGED
|
Binary file
|