@daleal/biome-config-ts
v0.1.0
Published
daleal's opinionated Biome configuration for TypeScript projects
Readme
@daleal/biome-config-ts
Opinionated Biome configuration for TypeScript projects, tuned for the way daleal likes imports, style rules, and type-aware linting.
Install
bun add -D @daleal/biome-config-ts @biomejs/biomeUsage
// biome.json
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["@daleal/biome-config-ts"]
}You can also layer your own overrides on top of the preset:
// biome.json
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["@daleal/biome-config-ts"],
"linter": {
"rules": {
"suspicious": {
"noConsole": "off"
}
}
}
}