@taskylizard/biome-config
v1.0.5
Published
BiomeJS configuration
Downloads
430
Maintainers
Readme
@taskylizard/biome-config
Usage
Installation
npm|yarn|pnpm|bun add -D @biomejs/biome @taskylizard/biome-config
Add the extends
array to your project's biome.json
file:
// <project-root>/biome.json
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": "@taskylizard/biome-config"
// ...
}
Add scripts to your package.json
if you haven't already:
// <project-root>/package.json
{
//...
"scripts": {
"format": "biome format . --write",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"lint:fix:unsafe": "biome lint . --unsafe"
}
}
// ...
}
Visual Studio Code Setup
Install the BiomeJS Visual Studio Code extension if you haven't already.
Add the following settings to your project's
.vscode/settings.json
, or create them anew:
// <project-root>/.vscode/settings.json
{
// ...
"[javascript][javascriptreact][typescript][typescriptreact][json][jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
}
// ...
}
Rules
The follow rules are enabled by default for a out-of-the-box experience.