Files
xiaoju 390172605c
CI / check (push) Failing after 38s
chore: normalize to bun monorepo conventions
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-28 08:49:03 +00:00

47 lines
821 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"include": ["**"],
"ignore": ["**/dist", "**/node_modules"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "always"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"organizeImports": {
"enabled": true
},
"overrides": [
{
"include": [
"**/__tests__/**",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx"
],
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "off"
}
}
}
}
]
}