@biomejs/wasm-nodejs 1.5.3-nightly.d2858ee → 1.5.3-nightly.dca6a7a
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 +13 -3
- package/biome_wasm.js +13 -13
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/biome_wasm.d.ts
CHANGED
|
@@ -869,6 +869,10 @@ interface Nursery {
|
|
|
869
869
|
* Disallow then property.
|
|
870
870
|
*/
|
|
871
871
|
noThenProperty?: RuleConfiguration;
|
|
872
|
+
/**
|
|
873
|
+
* Disallow the use of dependencies that aren't specified in the package.json.
|
|
874
|
+
*/
|
|
875
|
+
noUndeclaredDependencies?: RuleConfiguration;
|
|
872
876
|
/**
|
|
873
877
|
* Disallow unused imports.
|
|
874
878
|
*/
|
|
@@ -1457,10 +1461,14 @@ type FilenameCase =
|
|
|
1457
1461
|
| "kebab-case"
|
|
1458
1462
|
| "PascalCase"
|
|
1459
1463
|
| "snake_case";
|
|
1460
|
-
interface
|
|
1461
|
-
|
|
1464
|
+
interface UpdateProjectParams {
|
|
1465
|
+
path: RomePath;
|
|
1466
|
+
}
|
|
1467
|
+
interface OpenProjectParams {
|
|
1468
|
+
content: string;
|
|
1469
|
+
path: RomePath;
|
|
1470
|
+
version: number;
|
|
1462
1471
|
}
|
|
1463
|
-
interface ProjectFeaturesResult {}
|
|
1464
1472
|
interface OpenFileParams {
|
|
1465
1473
|
content: string;
|
|
1466
1474
|
language_hint?: Language;
|
|
@@ -1469,6 +1477,7 @@ interface OpenFileParams {
|
|
|
1469
1477
|
}
|
|
1470
1478
|
type Language =
|
|
1471
1479
|
| "Astro"
|
|
1480
|
+
| "Vue"
|
|
1472
1481
|
| "JavaScript"
|
|
1473
1482
|
| "JavaScriptReact"
|
|
1474
1483
|
| "TypeScript"
|
|
@@ -1640,6 +1649,7 @@ type Category =
|
|
|
1640
1649
|
| "lint/nursery/noSkippedTests"
|
|
1641
1650
|
| "lint/nursery/noThenProperty"
|
|
1642
1651
|
| "lint/nursery/noTypeOnlyImportAttributes"
|
|
1652
|
+
| "lint/nursery/noUndeclaredDependencies"
|
|
1643
1653
|
| "lint/nursery/noUnusedImports"
|
|
1644
1654
|
| "lint/nursery/noUnusedPrivateClassMembers"
|
|
1645
1655
|
| "lint/nursery/noUselessLoneBlockStatements"
|
package/biome_wasm.js
CHANGED
|
@@ -733,29 +733,21 @@ module.exports.__wbindgen_is_string = function(arg0) {
|
|
|
733
733
|
return ret;
|
|
734
734
|
};
|
|
735
735
|
|
|
736
|
-
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
737
|
-
const ret = getObject(arg0);
|
|
738
|
-
return addHeapObject(ret);
|
|
739
|
-
};
|
|
740
|
-
|
|
741
736
|
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
742
737
|
const ret = getObject(arg0) == getObject(arg1);
|
|
743
738
|
return ret;
|
|
744
739
|
};
|
|
745
740
|
|
|
746
|
-
module.exports.__wbg_String_91fba7ded13ba54c = function(arg0, arg1) {
|
|
747
|
-
const ret = String(getObject(arg1));
|
|
748
|
-
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
749
|
-
const len0 = WASM_VECTOR_LEN;
|
|
750
|
-
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
751
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
752
|
-
};
|
|
753
|
-
|
|
754
741
|
module.exports.__wbindgen_number_new = function(arg0) {
|
|
755
742
|
const ret = arg0;
|
|
756
743
|
return addHeapObject(ret);
|
|
757
744
|
};
|
|
758
745
|
|
|
746
|
+
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
747
|
+
const ret = getObject(arg0);
|
|
748
|
+
return addHeapObject(ret);
|
|
749
|
+
};
|
|
750
|
+
|
|
759
751
|
module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
760
752
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
761
753
|
return addHeapObject(ret);
|
|
@@ -770,6 +762,14 @@ module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
|
|
|
770
762
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
771
763
|
};
|
|
772
764
|
|
|
765
|
+
module.exports.__wbg_String_91fba7ded13ba54c = function(arg0, arg1) {
|
|
766
|
+
const ret = String(getObject(arg1));
|
|
767
|
+
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
768
|
+
const len0 = WASM_VECTOR_LEN;
|
|
769
|
+
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
770
|
+
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
771
|
+
};
|
|
772
|
+
|
|
773
773
|
module.exports.__wbg_new_abda76e883ba8a5f = function() {
|
|
774
774
|
const ret = new Error();
|
|
775
775
|
return addHeapObject(ret);
|
package/biome_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.5.3-nightly.
|
|
1
|
+
{"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.5.3-nightly.dca6a7a","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"],"main":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","keywords":["parser","linter","formatter"]}
|