because I got bored of customising my CV for every job
1
fork

Configure Feed

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

chore(biome): add , fix includes and excludes, normalize overrides

+8 -2
+8 -2
biome.json
··· 1 1 { 2 2 "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json", 3 3 "files": { 4 - "includes": ["apps/**/*", "packages/**/*"], 4 + "includes": [ 5 + "apps/**/*", 6 + "packages/**/*", 7 + "!**/node_modules", 8 + "!**/dist", 9 + "!**/build" 10 + ], 5 11 "ignoreUnknown": false 6 12 }, 7 13 "vcs": { ··· 80 86 } 81 87 } 82 88 ] 83 - } 89 + }