The CI runner's pnpm store lands inside the workspace, causing Biome to lint/format hundreds of store index JSON files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
654 B
JSON
44 lines
654 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.0.0/schema.json",
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!**/dist/**",
|
|
"!.claude/**",
|
|
"!.specify/**",
|
|
"!specs/**",
|
|
"!coverage/**",
|
|
"!.pnpm-store/**"
|
|
]
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": {
|
|
"level": "on"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "tab",
|
|
"lineWidth": 80
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"complexity": {
|
|
"noExcessiveCognitiveComplexity": {
|
|
"level": "error",
|
|
"options": {
|
|
"maxAllowedComplexity": 15
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|