Back to Extensions Directory
Read the complete README
coc-biome
unknownBiome extension for coc.nvim
Installation CommandVim prompt
:CocInstall coc-biome
Publisher
unknownVersion
v1.8.0npm package
coc-biomeRequirements
coc ^0.0.82
License
MIT
Repository
Not publishednpm latest published 2024-07-24Registry checked 2026-08-23Registry summary
Published Package Summary
coc-biome
Biome extension for coc.nvim
Install
:CocInstall coc-biome
Configurations
biome.enable: enable coc-biome, defaulttruebiome.bin: custom Biome binary path. By default, coc-biome only uses localbiomebinary in your projectbiome.requireConfiguration: Require abiome.jsonfile to enable Biome's formatting and linting, defaulttrue
License
MIT
This extension is built with create-coc-extension
- Biome extension for coc.nvim
Activation Events
- onLanguage:css
- onLanguage:vue
- onLanguage:json
- onLanguage:jsonc
- onLanguage:astro
- onLanguage:svelte
- onLanguage:javascript
- onLanguage:javascriptreact
- onLanguage:typescript
- onLanguage:typescriptreact
Developer Resources
Want to build, test, or contribute to coc.nvim extensions? Explore our official SDK and testing toolkits.
Open Developer GuideVersion History
This published npm package does not include a history.md or changelog.md file. Browse its npm versions for available release information.
Contributed Commands
All contributes.commands entries from the published package manifest for coc-biome@1.8.0.
This package does not declare any contributed commands.
Configuration Schema
All contributes.configuration entries from the published package manifest, including each raw property schema for coc-settings.json.
biome.binstring | null
Custom biome binary path
Default: null
Raw JSON Schema
{
"type": [
"string",
"null"
],
"default": null,
"description": "Custom biome binary path"
}biome.enableboolean
Enable coc-biome extension
Default: true
Raw JSON Schema
{
"type": "boolean",
"default": true,
"description": "Enable coc-biome extension"
}biome.trace.serverstring
Traces the communication between VS Code and the language server.
Default: "off"
Raw JSON Schema
{
"enum": [
"off",
"messages",
"verbose"
],
"type": "string",
"default": "off",
"description": "Traces the communication between VS Code and the language server.",
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
]
}biome.requireConfigurationboolean
Require a Biome configuration file to enable syntax errors, formatting and linting.
Default: true
Raw JSON Schema
{
"type": "boolean",
"default": true,
"markdownDescription": "Require a Biome configuration file to enable syntax errors, formatting and linting."
}