@biomejs/backend-jsonrpc
Advanced tools
Comparing version 0.2.0 to 0.2.2
@@ -1,1 +0,1 @@ | ||
{"name":"@biomejs/backend-jsonrpc","version":"0.2.0","main":"dist/index.js","scripts":{"test":"vitest","test:ci":"pnpm build && vitest --run","tsc":"tsc --noEmit","build":"tsc"},"homepage":"https://biomejs.dev","repository":{"type":"git","url":"https://github.com/biomejs/biome.git","directory":"npm/backend-jsonrpc"},"author":"Biome Developers and Contributors","bugs":"https://github.com/biomejs/biome/issues","description":"Bindings to the JSON-RPC Workspace API of the Biome daemon","keywords":["JavaScript","TypeScript","format","lint","toolchain"],"engines":{"node":">=14.*"},"license":"MIT","devDependencies":{"@types/node":"^18.7.2","typescript":"^4.8.2","vite":"^3.0.8","vitest":"^0.22.0"},"optionalDependencies":{"@biomejs/cli-win32-x64":"0.2.0","@biomejs/cli-win32-arm64":"0.2.0","@biomejs/cli-darwin-x64":"0.2.0","@biomejs/cli-darwin-arm64":"0.2.0","@biomejs/cli-linux-x64":"0.2.0","@biomejs/cli-linux-arm64":"0.2.0"}} | ||
{"name":"@biomejs/backend-jsonrpc","version":"0.2.2","main":"dist/index.js","scripts":{"test":"vitest","test:ci":"pnpm build && vitest --run","tsc":"tsc --noEmit","build":"tsc"},"homepage":"https://biomejs.dev","repository":{"type":"git","url":"https://github.com/biomejs/biome.git","directory":"npm/backend-jsonrpc"},"author":"Biome Developers and Contributors","bugs":"https://github.com/biomejs/biome/issues","description":"Bindings to the JSON-RPC Workspace API of the Biome daemon","keywords":["JavaScript","TypeScript","format","lint","toolchain"],"engines":{"node":">=14.*"},"license":"MIT","devDependencies":{"@types/node":"^18.7.2","typescript":"^4.8.2","vite":"^3.0.8","vitest":"^0.22.0"},"optionalDependencies":{"@biomejs/cli-win32-x64":"0.2.2","@biomejs/cli-win32-arm64":"0.2.2","@biomejs/cli-darwin-x64":"0.2.2","@biomejs/cli-darwin-arm64":"0.2.2","@biomejs/cli-linux-x64":"0.2.2","@biomejs/cli-linux-arm64":"0.2.2"}} |
@@ -23,3 +23,3 @@ // Generated file, do not edit by hand, see `xtask/codegen` | ||
/** | ||
* The configuration that is contained inside the file `rome.json` | ||
* The configuration that is contained inside the file `biome.json` | ||
*/ | ||
@@ -174,3 +174,3 @@ export interface Configuration { | ||
/** | ||
* 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. | ||
@@ -645,2 +645,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. | ||
@@ -666,2 +670,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. | ||
@@ -1227,2 +1235,3 @@ */ | ||
| "lint/nursery/noUselessEmptyExport" | ||
| "lint/nursery/noUselessThisAlias" | ||
| "lint/nursery/noVoid" | ||
@@ -1232,2 +1241,3 @@ | "lint/nursery/useAriaPropTypes" | ||
| "lint/nursery/useExhaustiveDependencies" | ||
| "lint/nursery/useGetterReturn" | ||
| "lint/nursery/useGroupedTypeImport" | ||
@@ -1234,0 +1244,0 @@ | "lint/nursery/useHookAtTopLevel" |
72716
2270