🧹 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.
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-reactCreate or update a biome.json (or biome.jsonc) file at the root of your project:
{
"extends": ["@tracktor/biome-config-react"]
}Check for linting and formatting issues:
bun x biome check .Automatically fix issues:
bun x biome check . --writeFormat files:
bun x biome format . --write