| 1 | { |
| 2 | "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", |
| 3 | "files": { |
| 4 | "ignore": ["**/dist/**", "**/node_modules/**", "**/.html-video/**", "**/templates/*/source/**"] |
| 5 | }, |
| 6 | "formatter": { |
| 7 | "indentStyle": "space", |
| 8 | "indentWidth": 2, |
| 9 | "lineWidth": 100, |
| 10 | "lineEnding": "lf" |
| 11 | }, |
| 12 | "linter": { |
| 13 | "enabled": true, |
| 14 | "rules": { |
| 15 | "recommended": true, |
| 16 | "style": { |
| 17 | "noNonNullAssertion": "warn" |
| 18 | }, |
| 19 | "suspicious": { |
| 20 | "noExplicitAny": "warn" |
| 21 | } |
| 22 | } |
| 23 | }, |
| 24 | "javascript": { |
| 25 | "formatter": { |
| 26 | "quoteStyle": "single", |
| 27 | "trailingCommas": "all", |
| 28 | "semicolons": "always", |
| 29 | "arrowParentheses": "always" |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 |