biome-config-oy
v1.0.0
Published
Shared Biome (lint + format) config for my projects.
Maintainers
Readme
biome-config-oy
Shared Biome (lint + format) base config. Replaces the
retired eslint-config-oy (the projects moved from ESLint to Biome).
Usage
// biome.json
{
"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
"extends": ["biome-config-oy"],
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
"files": { "includes": ["src/**/*.ts", "test/**/*.ts", "*.ts"] }
}Install alongside Biome:
npm i -D @biomejs/biome biome-config-oyConventions
- 2-space indent, single quotes, semicolons, no trailing commas, width 100.
recommendedrules on, with project-style exceptions disabled (noExplicitAny,noImplicitAnyLet,noConfusingVoidType,noSparseArray,useTemplate,noNonNullAssertion,noParameterAssign,noArguments,noUnusedFunctionParameters,noVoidTypeReturn).- Import organization enabled.
Each project sets its own files.includes and vcs.
