A toolchain for web projects, aimed to provide functionalities to maintain them. Biome offers formatter and linter, usable via CLI and LSP.
Find a file
Emanuele Stoppa 36d3764045
Some checks failed
Benchmarks GraphQL / Bench (push) Waiting to run
Benchmarks JS / Bench (push) Waiting to run
Benchmarks JSON / Bench (push) Waiting to run
Lint rule docs / Validate rules documentation (push) Waiting to run
Repository dispatch on main / Build @biomejs/wasm-web (push) Waiting to run
Repository dispatch on main / Repository dispatch (push) Blocked by required conditions
Benchmarks CSS / Bench (push) Has been cancelled
Benchmarks Configuration / Bench (push) Has been cancelled
Benchmarks Manifests / Bench (push) Has been cancelled
Benchmarks Module Graph / Bench (push) Has been cancelled
Benchmarks Tailwind / Bench (push) Has been cancelled
Merge remote-tracking branch 'origin/main' into next
2025-12-08 17:02:34 +00:00
.cargo ci: make it so windows devs don't get lints that don't show up on linux/macos (#7003) 2025-07-28 11:44:28 -04:00
.changeset Merge branch 'main' into next 2025-12-08 16:58:46 +00:00
.claude feat: promote rules (#7137) 2025-08-09 21:38:26 +01:00
.devcontainer chore(deps): update mcr.microsoft.com/devcontainers/universal docker tag to v3 (#6262) 2025-06-09 12:46:22 +02:00
.github ci: attest build provenance for CLI binaries (#8379) 2025-12-08 23:10:51 +09:00
benchmark chore: sync html prettier tests (#8291) 2025-12-04 10:34:53 -05:00
crates Merge remote-tracking branch 'origin/main' into next 2025-12-08 17:02:34 +00:00
e2e-tests fix: resolve settings based on path (#6175) 2025-05-30 12:09:24 +01:00
fuzz
packages Merge branch 'main' into next 2025-12-08 16:58:46 +00:00
plugins feat: execute JS plugin in the Boa engine (#7300) 2025-08-28 14:11:20 +09:00
scripts chore: fix formatting and code of script (#7821) 2025-10-22 10:14:27 +01:00
xtask feat: support formatting embedded CSS in JS (#7973) 2025-12-09 00:36:27 +09:00
.coderabbit.yaml chore: disable docstrings in coderabbit (#8203) 2025-11-21 14:39:23 +00:00
.dockerignore
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore chore: add .zed to gitignore (#7634) 2025-10-03 08:29:31 +01:00
.markdownlint.json fix(core): infer for-of and for-in loop variables (#6809) 2025-07-10 10:26:42 +02:00
AGENTS.md feat(html): implement {@debug} parsing (#7969) 2025-11-03 16:13:59 +00:00
biome.json feat(core): add force-ignore syntax to files.includes (#7359) 2025-08-31 15:51:06 +02:00
Cargo.lock Merge remote-tracking branch 'origin/main' into next 2025-12-08 17:02:34 +00:00
Cargo.toml Merge remote-tracking branch 'origin/main' into next 2025-12-08 17:02:34 +00:00
CHANGELOG.md
CHANGELOG_v1.md ci: add a job for linting markdown files (#6825) 2025-07-09 17:42:30 -04:00
CLAUDE.md chore: ai docs revamp (#7879) 2025-10-26 15:26:44 +00:00
clippy.toml
CODE_OF_CONDUCT.md
CONTRIBUTING.md ci: bundle WASM manually (#8271) 2025-11-28 09:07:23 +00:00
Dockerfile.benchmark chore(deps): update rust:1.91.1-bookworm docker digest to 8fed34f (#8231) 2025-11-24 06:46:28 +00:00
GOVERNANCE.md chore: fix various typos across codebase (#7216) 2025-08-14 11:12:41 +09:00
insta.yml fix(core): computed scan kind (#6378) 2025-06-19 09:46:04 +01:00
justfile ci: bundle WASM manually (#8271) 2025-11-28 09:07:23 +00:00
LICENSE-APACHE
LICENSE-MIT
package.json chore(deps): update dependency @changesets/cli to v2.29.8 (#8322) 2025-12-01 12:39:28 +09:00
pnpm-lock.yaml fix(deps): update dependency prettier to v3.7.4 (#8387) 2025-12-08 15:33:11 +09:00
pnpm-workspace.yaml chore: link packages differently (#6558) 2025-06-26 13:24:14 +01:00
README.md
RELEASES.md fix(RELEASES.md): grammar and typo error (#7993) 2025-11-05 08:21:36 +00:00
ROME_CHANGELOG.md fix(ROME_CHANGELOG.md): grammar and typo error (#7992) 2025-11-04 22:44:33 -05:00
rust-toolchain.toml ci: bundle WASM manually (#8271) 2025-11-28 09:07:23 +00:00
rustfmt.toml chore: add edition 2024 to rustfmt.toml (#7591) 2025-09-25 11:21:10 +09:00
taplo.toml


Biome is a performant toolchain for web projects, it aims to provide developer tools to maintain the health of said projects.

Biome is a fast formatter for JavaScript, TypeScript, JSX, JSON, CSS and GraphQL that scores 97% compatibility with Prettier.

Biome is a performant linter for JavaScript, TypeScript, JSX, JSON, CSS, and GraphQL that features more than 340 rules from ESLint, typescript-eslint, and other sources. It outputs detailed and contextualized diagnostics that help you to improve your code and become a better programmer!

Biome is designed from the start to be used interactively within an editor. It can format and lint malformed code as you are writing it.

Installation

npm install --save-dev --save-exact @biomejs/biome

Usage

# format files
npx @biomejs/biome format --write

# lint files and apply the safe fixes
npx @biomejs/biome lint --write

# run format, lint, etc. and apply the safe fixes
npx @biomejs/biome check --write

# check all files against format, lint, etc. in CI environments
npx @biomejs/biome ci

If you want to give Biome a run without installing it, use the online playground, compiled to WebAssembly.

Documentation

Check out our homepage to learn more about Biome, or directly head to the Getting Started guide to start using Biome.

More about Biome

Biome has sane defaults and it doesn't require configuration.

Biome aims to support all main languages of modern web development.

Biome doesn't require Node.js to function.

Biome has first-class LSP support, with a sophisticated parser that represents the source text in full fidelity and top-notch error recovery.

Biome wants to offer a high-quality Developer Experience, with descriptive diagnostics and great performance.

Biome unifies functionalities that have previously been separate tools. Building upon a shared base allows us to provide a cohesive experience for processing code, displaying errors, parallelize work, caching, and configuration.

Read more about our project philosophy.

Biome is MIT licensed or Apache 2.0 licensed and moderated under the Contributor Covenant Code of Conduct.

Funding

You can fund the project in different ways

Project sponsorship and funding

You can sponsor or fund the project via Open collective or GitHub sponsors

Biome offers a simple sponsorship program that allows companies to get visibility and recognition among various developers.

Biome offers enterprise support, where Core Contributors can be employed to work on company-focused projects.

Sponsors

Platinum Sponsors

Depot logo

Silver Sponsors

L2BEAT logo Phoenix Labs logo Lokalise logo

Bronze Sponsors

Nanabit logo Vital logo CodeRabbit logo Forge42 logo RStudio logo Pennylane logo JetBrains logo EGSTOCK, Inc. logo Convex logo Graphite logo