biome-formatting
Use when formatting JavaScript/TypeScript code with Biome's fast formatter including patterns, options, and code style management.
What this skill does
# Biome Formatting
Master Biome's fast code formatter for JavaScript, TypeScript, JSON, and other supported languages with consistent style enforcement.
## Overview
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.
## Core Commands
### Basic Formatting
```bash
# 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"
```
### Combined Operations
```bash
# Lint and format together
biome check --write .
# Only format (skip linting)
biome format --write .
# CI mode (check both lint and format)
biome ci .
```
## Formatter Configuration
### Global Settings
```json
{
"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
### Recommended Configuration
```json
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 100
}
}
```
## Language-Specific Formatting
### JavaScript/TypeScript
```json
{
"javascript": {
"formatter": {
"enabled": true,
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"attributePosition": "auto"
}
}
}
```
#### Quote Styles
```json
{
"javascript": {
"formatter": {
"quoteStyle": "single", // 'string' vs "string"
"jsxQuoteStyle": "double" // <div attr="value">
}
}
}
```
Examples:
```javascript
// 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' />
```
#### Trailing Commas
```json
{
"javascript": {
"formatter": {
"trailingCommas": "all" // "all", "es5", or "none"
}
}
}
```
Examples:
```javascript
// "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
};
```
#### Semicolons
```json
{
"javascript": {
"formatter": {
"semicolons": "always" // "always" or "asNeeded"
}
}
}
```
Examples:
```javascript
// "always"
const x = 1;
const y = 2;
// "asNeeded"
const x = 1
const y = 2
```
#### Arrow Parentheses
```json
{
"javascript": {
"formatter": {
"arrowParentheses": "always" // "always" or "asNeeded"
}
}
}
```
Examples:
```javascript
// "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
```
#### Bracket Spacing
```json
{
"javascript": {
"formatter": {
"bracketSpacing": true // true or false
}
}
}
```
Examples:
```javascript
// bracketSpacing: true
const obj = { a: 1, b: 2 };
// bracketSpacing: false
const obj = {a: 1, b: 2};
```
#### Bracket Same Line
```json
{
"javascript": {
"formatter": {
"bracketSameLine": false // true or false
}
}
}
```
Examples:
```jsx
// bracketSameLine: false
<Button
onClick={handleClick}
label="Submit"
>
Click me
</Button>
// bracketSameLine: true
<Button
onClick={handleClick}
label="Submit">
Click me
</Button>
```
#### Quote Properties
```json
{
"javascript": {
"formatter": {
"quoteProperties": "asNeeded" // "asNeeded" or "preserve"
}
}
}
```
Examples:
```javascript
// "asNeeded"
const obj = {
validIdentifier: 1,
'invalid-identifier': 2,
'needs quotes': 3,
};
// "preserve"
const obj = {
'validIdentifier': 1,
'invalid-identifier': 2,
'needs quotes': 3,
};
```
### JSON Formatting
```json
{
"json": {
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80,
"trailingCommas": "none"
}
}
}
```
Note: JSON doesn't support trailing commas, so always use "none".
### CSS Formatting
```json
{
"css": {
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80,
"quoteStyle": "double"
}
}
}
```
## Common Configurations
### Prettier-like Configuration
```json
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"trailingCommas": "es5",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false
}
}
}
```
### Standard/XO Style
```json
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "none",
"semicolons": "asNeeded",
"arrowParentheses": "asNeeded",
"bracketSpacing": true
}
}
}
```
### Google Style
```json
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always"
}
}
}
```
### Airbnb Style
```json
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true
}
}
}
```
## Ignoring Formatting
### Ignore Blocks
```javascript
// 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! ║
╚═══════════════╝
`;
```
### Ignore Files
In biome.json:
```json
{
"formatter": {
"ignore": [
"**/generated/**",
"**/*.min.js",
"**/dist/**"
]
}
}
```
Or use files.ignore for both linting and formatting:
```json
{
"files": {
"ignore": [
"**/node_modules/",
"**/dist/",
"**/*.min.js"
]
}
}
```
## Line Width Strategies
### Conservative (80 columns)
Good for code review, side-by-side diffs:
```json
{
"formatter": {
"lineWidth": 80
}
}
```
### Balanced (100-120 columns)
Modern standard for most projects:
```json
{
"formatter": {
"lineWidth": 100
}
}
```
### Relaxed (120+ columns)
For teams with large screens:
```json
{
"formatter": {
"lineWidth": 120
}
}
```
## Indentation Strategies
### Spaces (Recommended)
```json
{
"formatter": {
"indentStyle": "space",
"indentWidth": 2 // or 4
}
}
```
Pros:
- Consistent across all editors
- Better for code review
- Standard in JavaScript ecosystem
### Tabs
```json
{
"formatter": {
"indRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.