@biomejs/wasm-nodejs
Advanced tools
Comparing version 0.2.0 to 0.2.3
@@ -1,1 +0,1 @@ | ||
{"name":"@biomejs/wasm-nodejs","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"],"main":"rome_wasm.js","types":"rome_wasm.d.ts"} | ||
{"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"} |
@@ -158,3 +158,3 @@ /* tslint:disable */ | ||
/** | ||
* The folder where Biome should check for VCS files. By default, Biome will use the same folder where `rome.json` was found. | ||
* The folder where Biome should check for VCS files. By default, Biome will use the same folder where `biome.json` was found. | ||
@@ -600,2 +600,6 @@ 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 | ||
/** | ||
* Disallow useless this aliasing. | ||
*/ | ||
noUselessThisAlias?: RuleConfiguration; | ||
/** | ||
* Disallow the use of void operators, which is not a familiar operator. | ||
@@ -621,2 +625,6 @@ */ | ||
/** | ||
* Enforce get methods to always return a value. | ||
*/ | ||
useGetterReturn?: RuleConfiguration; | ||
/** | ||
* Enforce the use of import type when an import only has specifiers with type qualifier. | ||
@@ -1146,2 +1154,3 @@ */ | ||
| "lint/nursery/noUselessEmptyExport" | ||
| "lint/nursery/noUselessThisAlias" | ||
| "lint/nursery/noVoid" | ||
@@ -1151,2 +1160,3 @@ | "lint/nursery/useAriaPropTypes" | ||
| "lint/nursery/useExhaustiveDependencies" | ||
| "lint/nursery/useGetterReturn" | ||
| "lint/nursery/useGroupedTypeImport" | ||
@@ -1153,0 +1163,0 @@ | "lint/nursery/useHookAtTopLevel" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6697779
2397