| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "$schema": "https://biomejs.dev/schemas/2.4.2/schema.json",
- "assist": { "actions": { "source": { "organizeImports": "on" } } },
- "files": {
- "includes": ["**", "!oh-my-opencode-slim.schema.json"]
- },
- "vcs": {
- "enabled": true,
- "clientKind": "git",
- "useIgnoreFile": true
- },
- "linter": {
- "enabled": true,
- "rules": {
- "recommended": true,
- "suspicious": {
- "noExplicitAny": "warn"
- }
- }
- },
- "overrides": [
- {
- "includes": ["**/*.test.ts", "**/*.test.tsx"],
- "linter": {
- "rules": {
- "suspicious": {
- "noExplicitAny": "off"
- }
- }
- }
- }
- ],
- "formatter": {
- "enabled": true,
- "formatWithErrors": false,
- "indentStyle": "space",
- "indentWidth": 2,
- "lineEnding": "lf",
- "lineWidth": 80,
- "attributePosition": "auto"
- },
- "javascript": {
- "formatter": {
- "quoteStyle": "single",
- "trailingCommas": "all"
- }
- }
- }
|