@rimurugroup/biomejs-config
v1.2.0
Published
shared biomejs config
Downloads
20
Readme
Biomejs Config
create the following biome.json
file in the root of your project
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"extends": ["@rimurugroup/biomejs-config/biome"]
}
add the script in the package.json
{
"scripts": {
"lint": "biome lint --write ",
"format": "biome format --write",
"check": "biome check --write"
},
"devDependencies": {
"@rimurugroup/biomejs-config": "^1.x.x"
},
}