| 1 | { |
| 2 | "$schema": "https://biomejs.dev/schemas/2.3.12/schema.json", |
| 3 | "vcs": { |
| 4 | "enabled": false, |
| 5 | "clientKind": "git", |
| 6 | "useIgnoreFile": true |
| 7 | }, |
| 8 | "files": { |
| 9 | "ignoreUnknown": false |
| 10 | }, |
| 11 | "formatter": { |
| 12 | "enabled": true, |
| 13 | "indentStyle": "tab" |
| 14 | }, |
| 15 | "css": { |
| 16 | "parser": { |
| 17 | "tailwindDirectives": true |
| 18 | } |
| 19 | }, |
| 20 | "linter": { |
| 21 | "enabled": false, |
| 22 | "rules": { |
| 23 | "recommended": true |
| 24 | } |
| 25 | }, |
| 26 | "javascript": { |
| 27 | "formatter": { |
| 28 | "quoteStyle": "double" |
| 29 | } |
| 30 | }, |
| 31 | "assist": { |
| 32 | "enabled": false, |
| 33 | "actions": { |
| 34 | "source": { |
| 35 | "organizeImports": "on" |
| 36 | } |
| 37 | } |
| 38 | }, |
| 39 | "overrides": [ |
| 40 | { |
| 41 | "includes": ["**/*.svelte", "**/*.astro", "**/*.vue"], |
| 42 | "linter": { |
| 43 | "rules": { |
| 44 | "style": { |
| 45 | "useConst": "off", |
| 46 | "useImportType": "off" |
| 47 | }, |
| 48 | "correctness": { |
| 49 | "noUnusedVariables": "off", |
| 50 | "noUnusedImports": "off" |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | ] |
| 56 | } |