@builtby.win/configs
v1.1.2
Published
Shared Biome configuration for builtby.win projects
Maintainers
Readme
@builtby.win/configs
Shared Biome configuration for builtby.win projects.
Usage
- Install the package:
pnpm add -D @builtby.win/configs- Create a
biome.jsonin your project:
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"extends": ["@builtby.win/configs"]
}- Add scripts to your
package.json:
{
"scripts": {
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write ."
}
}Configuration
This config includes:
- 2-space indentation
- Single quotes for JS, double quotes for JSX
- Line width of 100
- Semicolons as needed
- Trailing commas everywhere
- Comprehensive linting rules for TypeScript and React
