Skip to content

dprint/dprint-plugin-biome

Repository files navigation

dprint-plugin-biome

CI

Adapter for Biome for use as a formatting plugin in dprint.

Install

Install and setup dprint.

Then in your project's directory with a dprint.json file, run:

dprint config add biome

Note: You do not need Biome installed globally as dprint will run Biome from the .wasm file in a sandboxed environment.

Configuration

To add configuration, specify a "biome" key in your dprint.json:

{
  "biome": {
    "indentStyle": "space",
    "lineWidth": 100,
    "indentWidth": 4
  },
  "plugins": [
    // ...etc...
  ]
}

For an overview of the config, see https://dprint.dev/plugins/biome/config/

Note: The plugin does not understand Biome's configuration file because it runs sandboxed in a Wasm runtime—it has no access to the file system in order to read Biome's config.

JS Formatting API

Versioning

This repo automatically upgrades to the latest version of Biome once a day. You can check which version of Biome is being used by looking at the tag property in the biome_js_formatter entry in the Cargo.toml file in this repo:

https://github.com/dprint/dprint-plugin-biome/blob/main/Cargo.toml

At the moment, the version of this plugin does not reflect the version of Biome. This is just in case there are any small bug fixes that need to be made as this plugin is quite new. After a while I'll try to match the versions.