@shraymonks/biome-config
v1.0.0
Published
My shared biome config
Readme
@shraymonks/biome-config
A shared Biome configuration for consistent code style, formatting, and linting across my projects.
Overview
Biome is an extremely fast toolchain for the web, designed to replace ESLint, Prettier, and more. This repository centralizes the configuration for Biome's linter and formatter to ensure uniformity and maintain high code quality standards.
Installation
To use this shared configuration, you'll need to install it alongside Biome.
First, add Biome to your project if you haven't already:
pnpm add -D @biomejs/biomeNext, install this shared configuration package:
pnpm add -D @shraymonks/biome-configUsage
Once the package is installed, create a biome.json file in the root of your
project and extend this configuration.
{
"extends": ["@shraymonks/biome-config"]
}Overriding Rules
If you need to override any rules for a specific project, you can do so directly
in your biome.json file. The local configuration will always take precedence.
{
"extends": ["@shraymonks/biome-config"],
"formatter": {
"indentStyle": "tab"
}
}