@exile-watch/biome-config
Shared Biome configuration for exile.watch projects

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
Install the package as a
devDependency
:
npm i -D @exile-watch/biome-config
Add/update following
scripts
properties in repo's rootpackage.json
:
// {root}/package.json
{
// ...
"scripts": {
// ...
"lint": "npx @biomejs/biome check .",
"lint:apply": "npx @biomejs/biome check --apply .",
"format": "npx @biomejs/biome format --write ."
}
}
Create
biome.json
with following content:
// {root}/biome.json
{
"extends": ["@exile-watch/biome-config"]
}
Last updated
Was this helpful?