Migrate from Biome
Move an existing Biome project onto Ultracite's presets without losing your single-binary workflow, editor defaults, or rule overrides.
If you’re already using Biome and want to switch to Ultracite’s preconfigured setup, this guide will help you migrate while preserving your existing configuration.
Why Migrate to Ultracite?
- Zero Configuration: Ultracite provides a highly configured preset of rules
- Editor Integration: Built-in support for AI-powered editors (Cursor, Windsurf, GitHub Copilot)
- Consistent Workflow: Standardized setup across projects and teams
- Additional Tooling: Optional Git hooks, lint-staged integration
- Maintained Rules: Regular updates with new best practices
Before You Start
Make sure you have:
- An existing project using Biome
- Node.js 20+
- A
biome.jsonorbiome.jsoncfile
Migration Options
Option 1: Quick Migration (Recommended)
The fastest way is to run the automatic setup script.
npx ultracite initpnpm dlx ultracite inityarn dlx ultracite initbunx ultracite initWhen prompted, select Biome as your linting provider. This will:
- Install Ultracite as a dependency
- Merge your existing
biome.json/biome.jsoncwith Ultracite’s preset - Merge your existing
.vscode/settings.jsonwith Ultracite’s preset - Enable
strictNullChecksin your existingtsconfig.jsonfiles (skipped if your project has none) - Preserve your custom rules and settings
- Set up editor integrations
Following the upgrade, you may want to review your biome.json / biome.jsonc file to remove any overrides that are now handled by Ultracite’s preset.
Option 2: Manual Migration
If you prefer more control over the process, update your biome.jsonc to extend Ultracite:
{
"extends": ["ultracite/biome/core"],
}
After the migration, restart your editor to ensure the new configuration is applied.