From biome
Guides formatting JavaScript/TypeScript/JSON code with Biome formatter using CLI commands, config options for indents, quotes, semicolons, trailing commas, and style enforcement.
npx claudepluginhub thebushidocollective/han --plugin biomeThis skill is limited to using the following tools:
Master Biome's fast code formatter for JavaScript, TypeScript, JSON, and other supported languages with consistent style enforcement.
Provides Biome commands for formatting, linting, and organizing imports in JavaScript, TypeScript, JSX/TSX, JSON, CSS projects. Use for zero-config setup, fast CI checks, or ESLint/Prettier migration.
Configures Biome linting and formatting via biome.json or biome.jsonc, troubleshoots diagnostics, sets ignores and overrides, and replaces ESLint/Prettier in JS/TS projects.
Guides Biome 2.4 configuration for linting, formatting, and import organization in JavaScript, TypeScript, JSX, CSS, GraphQL. Covers type-aware linting, GritQL rules, ESLint/Prettier migration, IDE/CI setup.
Share bugs, ideas, or general feedback.
Master Biome's fast code formatter for JavaScript, TypeScript, JSON, and other supported languages with consistent style enforcement.
Biome's formatter provides opinionated, fast code formatting similar to Prettier but with better performance. It's written in Rust and designed to format code consistently across teams.
# Format files and write changes
biome format --write .
# Format specific files
biome format --write src/**/*.ts
# Check formatting without fixing
biome format .
# Format stdin
echo "const x={a:1}" | biome format --stdin-file-path="example.js"
# Lint and format together
biome check --write .
# Only format (skip linting)
biome format --write .
# CI mode (check both lint and format)
biome ci .
{
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"attributePosition": "auto"
}
}
Options:
enabled: Enable/disable formatter (default: true)formatWithErrors: Format even with syntax errors (default: false)indentStyle: "space" or "tab" (default: "tab")indentWidth: Number of spaces, typically 2 or 4 (default: 2)lineEnding: "lf", "crlf", or "cr" (default: "lf")lineWidth: Maximum line length (default: 80)attributePosition: "auto" or "multiline" for HTML/JSX{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 100
}
}
{
"javascript": {
"formatter": {
"enabled": true,
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"attributePosition": "auto"
}
}
}
{
"javascript": {
"formatter": {
"quoteStyle": "single", // 'string' vs "string"
"jsxQuoteStyle": "double" // <div attr="value">
}
}
}
Examples:
// quoteStyle: "single"
const message = 'Hello, world!';
const name = 'Alice';
// quoteStyle: "double"
const message = "Hello, world!";
const name = "Alice";
// jsxQuoteStyle: "double"
<button onClick={handleClick} label="Submit" />
// jsxQuoteStyle: "single"
<button onClick={handleClick} label='Submit' />
{
"javascript": {
"formatter": {
"trailingCommas": "all" // "all", "es5", or "none"
}
}
}
Examples:
// "all"
const obj = {
a: 1,
b: 2,
};
function fn(
arg1,
arg2,
) {}
// "es5"
const obj = {
a: 1,
b: 2,
};
function fn(
arg1,
arg2 // No comma (not ES5)
) {}
// "none"
const obj = {
a: 1,
b: 2
};
{
"javascript": {
"formatter": {
"semicolons": "always" // "always" or "asNeeded"
}
}
}
Examples:
// "always"
const x = 1;
const y = 2;
// "asNeeded"
const x = 1
const y = 2
{
"javascript": {
"formatter": {
"arrowParentheses": "always" // "always" or "asNeeded"
}
}
}
Examples:
// "always"
const fn = (x) => x * 2;
const single = (item) => item;
// "asNeeded"
const fn = x => x * 2;
const single = item => item;
const multi = (a, b) => a + b; // Still needs parens
{
"javascript": {
"formatter": {
"bracketSpacing": true // true or false
}
}
}
Examples:
// bracketSpacing: true
const obj = { a: 1, b: 2 };
// bracketSpacing: false
const obj = {a: 1, b: 2};
{
"javascript": {
"formatter": {
"bracketSameLine": false // true or false
}
}
}
Examples:
// bracketSameLine: false
<Button
onClick={handleClick}
label="Submit"
>
Click me
</Button>
// bracketSameLine: true
<Button
onClick={handleClick}
label="Submit">
Click me
</Button>
{
"javascript": {
"formatter": {
"quoteProperties": "asNeeded" // "asNeeded" or "preserve"
}
}
}
Examples:
// "asNeeded"
const obj = {
validIdentifier: 1,
'invalid-identifier': 2,
'needs quotes': 3,
};
// "preserve"
const obj = {
'validIdentifier': 1,
'invalid-identifier': 2,
'needs quotes': 3,
};
{
"json": {
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80,
"trailingCommas": "none"
}
}
}
Note: JSON doesn't support trailing commas, so always use "none".
{
"css": {
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80,
"quoteStyle": "double"
}
}
}
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"trailingCommas": "es5",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false
}
}
}
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "none",
"semicolons": "asNeeded",
"arrowParentheses": "asNeeded",
"bracketSpacing": true
}
}
}
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always"
}
}
}
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true
}
}
}
// biome-ignore format: Preserve specific formatting
const matrix = [
[1, 0, 0],
[0, 1, 0],
[0, 0, 1]
];
// biome-ignore format: ASCII art
const banner = `
╔═══════════════╗
║ Welcome! ║
╚═══════════════╝
`;
In biome.json:
{
"formatter": {
"ignore": [
"**/generated/**",
"**/*.min.js",
"**/dist/**"
]
}
}
Or use files.ignore for both linting and formatting:
{
"files": {
"ignore": [
"**/node_modules/",
"**/dist/",
"**/*.min.js"
]
}
}
Good for code review, side-by-side diffs:
{
"formatter": {
"lineWidth": 80
}
}
Modern standard for most projects:
{
"formatter": {
"lineWidth": 100
}
}
For teams with large screens:
{
"formatter": {
"lineWidth": 120
}
}
{
"formatter": {
"indentStyle": "space",
"indentWidth": 2 // or 4
}
}
Pros:
{
"formatter": {
"indentStyle": "tab"
}
}
Pros:
Prettier .prettierrc.json:
{
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 80
}
Equivalent Biome config:
{
"formatter": {
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"semicolons": "always",
"quoteStyle": "single",
"trailingCommas": "all"
}
}
}
npm install -D @biomejs/biome
npx biome init
Match Prettier Settings: Update biome.json with equivalent config
Format Codebase:
npx biome format --write .
{
"scripts": {
"format": "biome format --write .",
"format:check": "biome format ."
}
}
npm uninstall prettier
rm .prettierrc.json .prettierignore
--changed for large codebases{
"formatter": {
"indentWidth": 2
},
"overrides": [
{
"include": ["**/*.json"],
"formatter": {
"lineWidth": 120
}
},
{
"include": ["**/*.md"],
"formatter": {
"lineWidth": 80
}
}
]
}
Format only changed files:
# Git changed files
biome format --write --changed
# Specific commit range
biome format --write --since=main
VS Code settings.json:
{
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
Root biome.json:
{
"formatter": {
"enabled": true,
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all"
}
}
}
Package-specific override:
{
"extends": ["../../biome.json"],
"formatter": {
"lineWidth": 120
}
}
Check:
formatter.enabled is trueIf formatting keeps changing:
biome migrate to update configSpeed up formatting:
--changed for large repos