@biomejs/wasm-web 1.6.3 → 1.6.4
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 -7
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/biome_wasm.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ interface SupportsFeatureParams {
|
|
|
7
7
|
features: FeatureName[];
|
|
8
8
|
path: BiomePath;
|
|
9
9
|
}
|
|
10
|
-
type FeatureName = "Format" | "Lint" | "OrganizeImports";
|
|
10
|
+
type FeatureName = "Format" | "Lint" | "OrganizeImports" | "Search";
|
|
11
11
|
interface BiomePath {
|
|
12
12
|
path: string;
|
|
13
13
|
}
|
|
@@ -843,7 +843,7 @@ interface Nursery {
|
|
|
843
843
|
*/
|
|
844
844
|
noBarrelFile?: RuleConfiguration_for_Null;
|
|
845
845
|
/**
|
|
846
|
-
*
|
|
846
|
+
* [WIP] This rule hasn't been implemented yet.
|
|
847
847
|
*/
|
|
848
848
|
noColorInvalidHex?: RuleConfiguration_for_Null;
|
|
849
849
|
/**
|
|
@@ -882,6 +882,10 @@ interface Nursery {
|
|
|
882
882
|
* Disallow focused tests.
|
|
883
883
|
*/
|
|
884
884
|
noFocusedTests?: RuleConfiguration_for_Null;
|
|
885
|
+
/**
|
|
886
|
+
* Checks that the assertion function, for example expect, is placed inside an it() function call.
|
|
887
|
+
*/
|
|
888
|
+
noMisplacedAssertion?: RuleConfiguration_for_Null;
|
|
885
889
|
/**
|
|
886
890
|
* Disallow the use of namespace imports.
|
|
887
891
|
*/
|
|
@@ -898,14 +902,14 @@ interface Nursery {
|
|
|
898
902
|
* Disallow specified modules when loaded by import or require.
|
|
899
903
|
*/
|
|
900
904
|
noRestrictedImports?: RuleConfiguration_for_RestrictedImportsOptions;
|
|
901
|
-
/**
|
|
902
|
-
* It detects possible "wrong" semicolons inside JSX elements.
|
|
903
|
-
*/
|
|
904
|
-
noSemicolonInJsx?: RuleConfiguration_for_Null;
|
|
905
905
|
/**
|
|
906
906
|
* Disallow disabled tests.
|
|
907
907
|
*/
|
|
908
908
|
noSkippedTests?: RuleConfiguration_for_Null;
|
|
909
|
+
/**
|
|
910
|
+
* It detects possible "wrong" semicolons inside JSX elements.
|
|
911
|
+
*/
|
|
912
|
+
noSuspiciousSemicolonInJsx?: RuleConfiguration_for_Null;
|
|
909
913
|
/**
|
|
910
914
|
* Disallow the use of dependencies that aren't specified in the package.json.
|
|
911
915
|
*/
|
|
@@ -1797,12 +1801,13 @@ type Category =
|
|
|
1797
1801
|
| "lint/nursery/noExcessiveNestedTestSuites"
|
|
1798
1802
|
| "lint/nursery/noExportsInTest"
|
|
1799
1803
|
| "lint/nursery/noFocusedTests"
|
|
1804
|
+
| "lint/nursery/noMisplacedAssertion"
|
|
1800
1805
|
| "lint/nursery/noNamespaceImport"
|
|
1801
1806
|
| "lint/nursery/noNodejsModules"
|
|
1802
1807
|
| "lint/nursery/noReExportAll"
|
|
1803
1808
|
| "lint/nursery/noRestrictedImports"
|
|
1804
|
-
| "lint/nursery/noSemicolonInJsx"
|
|
1805
1809
|
| "lint/nursery/noSkippedTests"
|
|
1810
|
+
| "lint/nursery/noSuspiciousSemicolonInJsx"
|
|
1806
1811
|
| "lint/nursery/noTypeOnlyImportAttributes"
|
|
1807
1812
|
| "lint/nursery/noUndeclaredDependencies"
|
|
1808
1813
|
| "lint/nursery/noUselessTernary"
|
|
@@ -1916,6 +1921,7 @@ type Category =
|
|
|
1916
1921
|
| "migrate"
|
|
1917
1922
|
| "deserialize"
|
|
1918
1923
|
| "project"
|
|
1924
|
+
| "search"
|
|
1919
1925
|
| "internalError/io"
|
|
1920
1926
|
| "internalError/fs"
|
|
1921
1927
|
| "internalError/panic"
|
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.4","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"]}
|