
What is Biome formatting?
Biome is a tool that keeps code clean and consistent.
In simple words, it:
- Auto-formats code so it looks the same everywhere
- Catches common mistakes early
- Removes the need to manually fix spacing, indentation, and style
Why formatting matters
Without a formatter:
- Everyone writes code differently
- Reviews focus on spaces, not logic
- Small style issues slow teams down
With Biome:
- Code looks the same for everyone
- Reviews focus on real problems
- Teams move faster
Why Ocean CRM uses Biome
Ocean CRM uses Biome as a single tool for code quality.
Here’s why it works well for us:
One tool, one job
- Formatting + linting in one place
- No conflicts between tools
- Less setup, less confusion
Very fast
- Built with Rust
- Runs much faster than older tools
- Keeps CI and local checks quick
Simple setup
- One
biome.jsonfile - Smart defaults
- No need for multiple config files
Better developer experience
- Works with VS Code
- Shows issues while you code
- Keeps style consistent automatically
How we use Biome in Ocean CRM
Our workflow is simple:
- Run
npm run formatbefore committing - CI checks formatting automatically
- Same rules for everyone

This keeps the codebase consistent without extra effort.
How it helps teams
For developers:
- No arguments about code style
- Cleaner pull requests
- Less manual fixing
For reviewers:
- Smaller, clearer diffs
- Focus on logic, not formatting
For the product:
- Stable and readable codebase
- Faster development
- Easier onboarding for new devs
