@exile-watch/biome-config

Shared Biome configuration for exile.watch projects

exile.watch logo

This package contains shared Biome configuration and Biome dependency (including it's binary).

About Biome

Biome is a fast formatter and a performant linter.

Usage

  1. Install the package as a devDependency:

npm i -D @exile-watch/biome-config

  1. Add/update following scripts properties in repo's root package.json:

// {root}/package.json
{
  // ...
  "scripts": {
    // ...
    "lint": "npx @biomejs/biome check .",
    "lint:apply": "npx @biomejs/biome check --apply .",
    "format": "npx @biomejs/biome format --write ."
  }
}

  1. Create biome.json with following content:

// {root}/biome.json
{
  "extends": ["@exile-watch/biome-config"]
}

Last updated

Was this helpful?