@biomejs/wasm-web 1.6.2 → 1.6.3
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 +7 -2
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/biome_wasm.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ interface PartialFilesConfiguration {
|
|
|
103
103
|
}
|
|
104
104
|
interface PartialFormatterConfiguration {
|
|
105
105
|
/**
|
|
106
|
-
* The attribute position style. By default auto.
|
|
106
|
+
* The attribute position style in HTMLish languages. By default auto.
|
|
107
107
|
*/
|
|
108
108
|
attributePosition?: AttributePosition;
|
|
109
109
|
enabled?: boolean;
|
|
@@ -267,7 +267,7 @@ interface PartialJavascriptFormatter {
|
|
|
267
267
|
*/
|
|
268
268
|
arrowParentheses?: ArrowParentheses;
|
|
269
269
|
/**
|
|
270
|
-
* The attribute position style in
|
|
270
|
+
* The attribute position style in jsx elements. Defaults to auto.
|
|
271
271
|
*/
|
|
272
272
|
attributePosition?: AttributePosition;
|
|
273
273
|
/**
|
|
@@ -866,6 +866,10 @@ interface Nursery {
|
|
|
866
866
|
* A describe block should not contain duplicate hooks.
|
|
867
867
|
*/
|
|
868
868
|
noDuplicateTestHooks?: RuleConfiguration_for_Null;
|
|
869
|
+
/**
|
|
870
|
+
* Disallow variables from evolving into any type through reassignments.
|
|
871
|
+
*/
|
|
872
|
+
noEvolvingAny?: RuleConfiguration_for_Null;
|
|
869
873
|
/**
|
|
870
874
|
* This rule enforces a maximum depth to nested describe() in test files.
|
|
871
875
|
*/
|
|
@@ -1789,6 +1793,7 @@ type Category =
|
|
|
1789
1793
|
| "lint/nursery/noDuplicateElseIf"
|
|
1790
1794
|
| "lint/nursery/noDuplicateJsonKeys"
|
|
1791
1795
|
| "lint/nursery/noDuplicateTestHooks"
|
|
1796
|
+
| "lint/nursery/noEvolvingAny"
|
|
1792
1797
|
| "lint/nursery/noExcessiveNestedTestSuites"
|
|
1793
1798
|
| "lint/nursery/noExportsInTest"
|
|
1794
1799
|
| "lint/nursery/noFocusedTests"
|
package/biome_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@biomejs/wasm-web","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.6.
|
|
1
|
+
{"name":"@biomejs/wasm-web","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.6.3","license":"MIT OR Apache-2.0","repository":{"type":"git","url":"https://github.com/biomejs/biome"},"files":["biome_wasm_bg.wasm","biome_wasm.js","biome_wasm.d.ts"],"module":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","sideEffects":["./snippets/*"],"keywords":["parser","linter","formatter"]}
|