The source code for my personal website and blog. hanna.lol
blog website
at main 60 lines 1.2 kB view raw
1{ 2 "$schema": "node_modules/@biomejs/biome/configuration_schema.json", 3 4 "assist": { 5 "enabled": false 6 }, 7 8 "linter": { 9 "enabled": true, 10 "rules": { 11 "recommended": true, 12 "security": "error", 13 "complexity": "warn", 14 "performance": "warn", 15 "correctness": { 16 "useImportExtensions": "off", 17 "recommended": true 18 } 19 } 20 }, 21 22 "formatter": { 23 "enabled": true, 24 "useEditorconfig": false, 25 "formatWithErrors": true, 26 "indentStyle": "space", 27 "lineEnding": "lf", 28 "lineWidth": 100, 29 "indentWidth": 2 30 }, 31 32 "javascript": { 33 "formatter": { 34 "arrowParentheses": "always", 35 "bracketSameLine": true, 36 "bracketSpacing": true, 37 "trailingCommas": "es5", 38 "quoteStyle": "single", 39 "semicolons": "always" 40 } 41 }, 42 43 "overrides": [ 44 { 45 "includes": ["**/*.astro"], 46 "linter": { 47 "rules": { 48 "style": { 49 "useConst": "off", 50 "useImportType": "off" 51 }, 52 "correctness": { 53 "noUnusedVariables": "off", 54 "noUnusedImports": "off" 55 } 56 } 57 } 58 } 59 ] 60}