-
-
Notifications
You must be signed in to change notification settings - Fork 208
Open
Description
Documentation URL
https://biomejs.dev/reference/vscode/#biomelspbin
Description
Summary
The VS Code integration docs for biome.lsp.bin seem to show an incorrect example path for the Biome CLI binary.
Current example
The docs currently show an example like:
{
"biome.lsp.bin": "./node_modules/@biomejs/cli-linux-x64/bin"
}However, when installing @biomejs/cli-linux-x64 via npm, the package structure (at least on Linux) looks like this:
node_modules/
@biomejs/
cli-linux-x64/
biome
package.json
...
There is no bin directory; the executable is the biome file itself.
Expectations
The example in the docs should instead point directly to the biome binary:
{
"biome.lsp.bin": "./node_modules/@biomejs/cli-linux-x64/biome"
}Code of Conduct
- I agree to follow Biome's Code of Conduct
Reactions are currently unavailable