👁️
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at dev 37 lines 669 B view raw
1{ 2 "$schema": "https://biomejs.dev/schemas/2.2.4/schema.json", 3 "vcs": { 4 "enabled": true, 5 "clientKind": "git", 6 "useIgnoreFile": true 7 }, 8 "files": { 9 "ignoreUnknown": false, 10 "includes": [ 11 "**/src/**/*", 12 "**/scripts/**/*", 13 "**/.vscode/**/*", 14 "**/index.html", 15 "**/vite.config.ts", 16 "!**/src/routeTree.gen.ts", 17 "!**/src/styles.css", 18 "!**/src/lib/lexicons" 19 ] 20 }, 21 "formatter": { 22 "enabled": true, 23 "indentStyle": "tab" 24 }, 25 "assist": { "actions": { "source": { "organizeImports": "on" } } }, 26 "linter": { 27 "enabled": true, 28 "rules": { 29 "recommended": true 30 } 31 }, 32 "javascript": { 33 "formatter": { 34 "quoteStyle": "double" 35 } 36 } 37}