biome

Automate code formatting and import sorting with Biome via biome.json.

19|6|Updated Sep 13, 2025
One-click install
npx skills add https://github.com/neverinfamous/memory-journal-mcp --skill biome-neverinfamous
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: biome
Source: https://github.com/neverinfamous/memory-journal-mcp/tree/main/skills/biome
Command: npx skills add https://github.com/neverinfamous/memory-journal-mcp --skill biome-neverinfamous

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Biome provides a high-performance toolchain to unify formatting, linting, and import sorting, replacing disparate defaults and reducing configuration drift.

Core Features & Use Cases

  • Unified biome.json at project root to control formatter, line width, indent, and import organization.
  • CI/CD integration with biome ci to verify formatting and linting in pipelines.
  • Editor integration including VS Code to set Biome as default formatter and enable format on save and automatic import sorting.

Quick Start

Create a single biome.json at the project root and enable Biome in your editor to start formatting and organizing imports.

Frequently Asked Questions about biome

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate code formatting and import sorting in a web project?

You can automate code formatting and import sorting by placing a single biome.json at the project root to enable the formatter and organizeImports. This unifies configuration and enforces consistent styles across your web project.

How do I run code formatting and linting checks in a CI pipeline?

Run code formatting and linting checks in a CI pipeline by integrating the biome ci command. This verifies that all committed code adheres to the rules defined in your root biome.json, preventing configuration drift.

Do I need a biome.json configuration file to format code on save in VS Code?

Yes, a biome.json at the project root is required to format code on save in VS Code. This file enables Biome as the default formatter and provides the configuration required for automatic import sorting.

What is the best way to unify linting and formatting configuration?

The best way to unify linting and formatting configuration is using a single biome.json at the project root. This approach replaces disparate defaults by controlling line width, indentation, and import organization in one file.

Can I control line width and indentation settings for import sorting?

Yes, you can control line width and indentation settings alongside import sorting within the unified biome.json. This single configuration file manages all formatting, linting, and import organization rules together.