@tracktor/biome-config-react
v1.4.0
Published
Tracktor shared Biome config for React projects
Downloads
1,075
Readme
@tracktor/biome-config-react
🧹 Shared Biome configuration for Tracktor React projects.
This package provides a centralized and consistent linting and formatting setup using Biome, ensuring clean and maintainable code across all Tracktor front-end applications.
📦 Installation
bun add -D @biomejs/biome @tracktor/biome-config-react
# or
yarn add -D @biomejs/biome @tracktor/biome-config-react
# or
npm install -D @biomejs/biome @tracktor/biome-config-react⚙️ Usage
Create or update a biome.json (or biome.jsonc) file at the root of your project:
{
"extends": ["@tracktor/biome-config-react"]
}🧭 Commands
Check for linting and formatting issues:
bun x biome check .Automatically fix issues:
bun x biome check . --writeFormat files:
bun x biome format . --write