Strict Production Biome Configuration
Complete Biome configuration with strict production rules, formatter settings, and VCS integration
{
"$schema": "https://biomejs.dev/schemas/1.0.0/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "tab",
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedVariables": "error",
"noUnusedImports": "error"
},
"suspicious": {
"noDebugger": "error",
"noConsoleLog": "warn"
}
}
},
"vcs": {
"enabled": true,
"clientKind": "git"
}
}