@biomejs/wasm-web 2.4.7 → 2.4.8
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 +39 -0
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/biome_wasm.d.ts
CHANGED
|
@@ -929,6 +929,7 @@ type Semicolons = "always" | "asNeeded";
|
|
|
929
929
|
type JsTrailingCommas = "all" | "es5" | "none";
|
|
930
930
|
type JsonTrailingCommas = "none" | "all";
|
|
931
931
|
type RuleDomain =
|
|
932
|
+
| "drizzle"
|
|
932
933
|
| "react"
|
|
933
934
|
| "test"
|
|
934
935
|
| "solid"
|
|
@@ -1911,6 +1912,16 @@ See https://biomejs.dev/linter/rules/no-div-regex
|
|
|
1911
1912
|
*/
|
|
1912
1913
|
noDivRegex?: NoDivRegexConfiguration;
|
|
1913
1914
|
/**
|
|
1915
|
+
* Require .where() to be called when using .delete() with Drizzle ORM.
|
|
1916
|
+
See https://biomejs.dev/linter/rules/no-drizzle-delete-without-where
|
|
1917
|
+
*/
|
|
1918
|
+
noDrizzleDeleteWithoutWhere?: NoDrizzleDeleteWithoutWhereConfiguration;
|
|
1919
|
+
/**
|
|
1920
|
+
* Require .where() to be called when using .update() with Drizzle ORM.
|
|
1921
|
+
See https://biomejs.dev/linter/rules/no-drizzle-update-without-where
|
|
1922
|
+
*/
|
|
1923
|
+
noDrizzleUpdateWithoutWhere?: NoDrizzleUpdateWithoutWhereConfiguration;
|
|
1924
|
+
/**
|
|
1914
1925
|
* Require all argument names for fields & directives to be unique.
|
|
1915
1926
|
See https://biomejs.dev/linter/rules/no-duplicate-argument-names
|
|
1916
1927
|
*/
|
|
@@ -3918,6 +3929,12 @@ type NoDeprecatedMediaTypeConfiguration =
|
|
|
3918
3929
|
type NoDivRegexConfiguration =
|
|
3919
3930
|
| RulePlainConfiguration
|
|
3920
3931
|
| RuleWithNoDivRegexOptions;
|
|
3932
|
+
type NoDrizzleDeleteWithoutWhereConfiguration =
|
|
3933
|
+
| RulePlainConfiguration
|
|
3934
|
+
| RuleWithNoDrizzleDeleteWithoutWhereOptions;
|
|
3935
|
+
type NoDrizzleUpdateWithoutWhereConfiguration =
|
|
3936
|
+
| RulePlainConfiguration
|
|
3937
|
+
| RuleWithNoDrizzleUpdateWithoutWhereOptions;
|
|
3921
3938
|
type NoDuplicateArgumentNamesConfiguration =
|
|
3922
3939
|
| RulePlainConfiguration
|
|
3923
3940
|
| RuleWithNoDuplicateArgumentNamesOptions;
|
|
@@ -5528,6 +5545,14 @@ interface RuleWithNoDivRegexOptions {
|
|
|
5528
5545
|
level: RulePlainConfiguration;
|
|
5529
5546
|
options?: NoDivRegexOptions;
|
|
5530
5547
|
}
|
|
5548
|
+
interface RuleWithNoDrizzleDeleteWithoutWhereOptions {
|
|
5549
|
+
level: RulePlainConfiguration;
|
|
5550
|
+
options?: NoDrizzleDeleteWithoutWhereOptions;
|
|
5551
|
+
}
|
|
5552
|
+
interface RuleWithNoDrizzleUpdateWithoutWhereOptions {
|
|
5553
|
+
level: RulePlainConfiguration;
|
|
5554
|
+
options?: NoDrizzleUpdateWithoutWhereOptions;
|
|
5555
|
+
}
|
|
5531
5556
|
interface RuleWithNoDuplicateArgumentNamesOptions {
|
|
5532
5557
|
level: RulePlainConfiguration;
|
|
5533
5558
|
options?: NoDuplicateArgumentNamesOptions;
|
|
@@ -7144,6 +7169,18 @@ interface NoDeprecatedMediaTypeOptions {
|
|
|
7144
7169
|
allow?: string[];
|
|
7145
7170
|
}
|
|
7146
7171
|
type NoDivRegexOptions = {};
|
|
7172
|
+
interface NoDrizzleDeleteWithoutWhereOptions {
|
|
7173
|
+
/**
|
|
7174
|
+
* List of variable names to consider as Drizzle ORM instances.
|
|
7175
|
+
*/
|
|
7176
|
+
drizzleObjectName?: string[];
|
|
7177
|
+
}
|
|
7178
|
+
interface NoDrizzleUpdateWithoutWhereOptions {
|
|
7179
|
+
/**
|
|
7180
|
+
* List of variable names to consider as Drizzle ORM instances.
|
|
7181
|
+
*/
|
|
7182
|
+
drizzleObjectName?: string[];
|
|
7183
|
+
}
|
|
7147
7184
|
type NoDuplicateArgumentNamesOptions = {};
|
|
7148
7185
|
type NoDuplicateAttributesOptions = {};
|
|
7149
7186
|
type NoDuplicateEnumValueNamesOptions = {};
|
|
@@ -8203,6 +8240,8 @@ type Category =
|
|
|
8203
8240
|
| "lint/nursery/noMultiStr"
|
|
8204
8241
|
| "lint/nursery/noNestedPromises"
|
|
8205
8242
|
| "lint/nursery/noParametersOnlyUsedInRecursion"
|
|
8243
|
+
| "lint/nursery/noDrizzleDeleteWithoutWhere"
|
|
8244
|
+
| "lint/nursery/noDrizzleUpdateWithoutWhere"
|
|
8206
8245
|
| "lint/nursery/noPlaywrightElementHandle"
|
|
8207
8246
|
| "lint/nursery/noPlaywrightEval"
|
|
8208
8247
|
| "lint/nursery/noPlaywrightForceOption"
|
package/biome_wasm_bg.wasm
CHANGED
|
Binary file
|