@biomejs/wasm-nodejs 0.2.0-nightly.0b5a3fd → 0.2.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/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@biomejs/wasm-nodejs","collaborators":["Rome Tools Developers and Contributors"],"description":"WebAssembly bindings to the Rome Workspace API","version":"0.2.0-nightly.0b5a3fd","license":"MIT","repository":{"type":"git","url":"https://github.com/rome/tools"},"files":["rome_wasm_bg.wasm","rome_wasm.js","rome_wasm.d.ts"],"main":"rome_wasm.js","types":"rome_wasm.d.ts"}
1
+ {"name":"@biomejs/wasm-nodejs","collaborators":["Rome Tools Developers and Contributors"],"description":"WebAssembly bindings to the Rome Workspace API","version":"0.2.3","license":"MIT","repository":{"type":"git","url":"https://github.com/biomejs/biome"},"files":["rome_wasm_bg.wasm","rome_wasm.js","rome_wasm.d.ts"],"main":"rome_wasm.js","types":"rome_wasm.d.ts"}
package/rome_wasm.d.ts CHANGED
@@ -155,7 +155,7 @@ interface VcsConfiguration {
155
155
  */
156
156
  enabled?: boolean;
157
157
  /**
158
- * The folder where Biome should check for VCS files. By default, Biome will use the same folder where `rome.json` was found.
158
+ * The folder where Biome should check for VCS files. By default, Biome will use the same folder where `biome.json` was found.
159
159
 
160
160
  If Biome can't find the configuration, it will attempt to use the current working directory. If no current working directory can't be found, Biome won't use the VCS integration, and a diagnostic will be emitted
161
161
  */
@@ -595,6 +595,10 @@ interface Nursery {
595
595
  * Disallow empty exports that don't change anything in a module file.
596
596
  */
597
597
  noUselessEmptyExport?: RuleConfiguration;
598
+ /**
599
+ * Disallow useless this aliasing.
600
+ */
601
+ noUselessThisAlias?: RuleConfiguration;
598
602
  /**
599
603
  * Disallow the use of void operators, which is not a familiar operator.
600
604
  */
@@ -616,7 +620,7 @@ interface Nursery {
616
620
  */
617
621
  useExhaustiveDependencies?: RuleConfiguration;
618
622
  /**
619
- * Enforces the presence of non-empty return statements in getters.
623
+ * Enforce get methods to always return a value.
620
624
  */
621
625
  useGetterReturn?: RuleConfiguration;
622
626
  /**
@@ -1144,6 +1148,7 @@ type Category =
1144
1148
  | "lint/nursery/noStaticOnlyClass"
1145
1149
  | "lint/nursery/noUnsafeDeclarationMerging"
1146
1150
  | "lint/nursery/noUselessEmptyExport"
1151
+ | "lint/nursery/noUselessThisAlias"
1147
1152
  | "lint/nursery/noVoid"
1148
1153
  | "lint/nursery/useAriaPropTypes"
1149
1154
  | "lint/nursery/useArrowFunction"
package/rome_wasm_bg.wasm CHANGED
Binary file