@biomejs/wasm-web 0.2.0 → 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-web","collaborators":["Rome Tools Developers and Contributors"],"description":"WebAssembly bindings to the Rome Workspace API","version":"0.2.0","license":"MIT","repository":{"type":"git","url":"https://github.com/rome/tools"},"files":["rome_wasm_bg.wasm","rome_wasm.js","rome_wasm.d.ts"],"module":"rome_wasm.js","types":"rome_wasm.d.ts","sideEffects":["./snippets/*"]}
1
+ {"name":"@biomejs/wasm-web","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"],"module":"rome_wasm.js","types":"rome_wasm.d.ts","sideEffects":["./snippets/*"]}
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
  */
@@ -615,6 +619,10 @@ interface Nursery {
615
619
  * Enforce all dependencies are correctly specified.
616
620
  */
617
621
  useExhaustiveDependencies?: RuleConfiguration;
622
+ /**
623
+ * Enforce get methods to always return a value.
624
+ */
625
+ useGetterReturn?: RuleConfiguration;
618
626
  /**
619
627
  * Enforce the use of import type when an import only has specifiers with type qualifier.
620
628
  */
@@ -1140,10 +1148,12 @@ type Category =
1140
1148
  | "lint/nursery/noStaticOnlyClass"
1141
1149
  | "lint/nursery/noUnsafeDeclarationMerging"
1142
1150
  | "lint/nursery/noUselessEmptyExport"
1151
+ | "lint/nursery/noUselessThisAlias"
1143
1152
  | "lint/nursery/noVoid"
1144
1153
  | "lint/nursery/useAriaPropTypes"
1145
1154
  | "lint/nursery/useArrowFunction"
1146
1155
  | "lint/nursery/useExhaustiveDependencies"
1156
+ | "lint/nursery/useGetterReturn"
1147
1157
  | "lint/nursery/useGroupedTypeImport"
1148
1158
  | "lint/nursery/useHookAtTopLevel"
1149
1159
  | "lint/nursery/useImportRestrictions"
package/rome_wasm_bg.wasm CHANGED
Binary file