my website at ewancroft.uk

chore: update cspell dictionary and project formatting

- Added domain-specific terms to .cspell.json, including 'ACTIVITYPUB', 'changefreq', 'urlset', and 'Scrobbles'.
- Reformatted ignorePaths and ignoreRegExpList in .cspell.json to use multi-line arrays for better readability.
- Removed a trailing comma in src/lib/data/slug-mappings.ts to enforce consistent code style.

ewancroft.uk a0952aaa ad05dabc

verified
Changed files
+18 -4
src
lib
+17 -3
.cspell.json
··· 3 "language": "en", 4 "words": [ 5 "ACTIVITYPUB", 6 "apdisk", 7 "apos", 8 "ardenivanov", ··· 23 "Caligraphic", 24 "CASL", 25 "Centralised", 26 "colour", 27 "colours", 28 "Containerisation", ··· 124 "rknight", 125 "Sanitise", 126 "scrobbler", 127 "scrobbling", 128 "searchi", 129 "shapeshifting", ··· 135 "svelte", 136 "timemachine", 137 "ttfb", 138 "Varepsilon", 139 "vercel", 140 "vercelignore", ··· 151 "xrpc" 152 ], 153 "flagWords": [], 154 - "ignorePaths": ["node_modules", "package-lock.json", "dist", "build"], 155 - "ignoreRegExpList": ["/(\\w+)'s/g"], 156 "overrides": [ 157 { 158 "filename": "**/*.svelte", 159 - "ignoreRegExpList": ["/>.*</", "/(\\w+)'s/g"] 160 } 161 ] 162 }
··· 3 "language": "en", 4 "words": [ 5 "ACTIVITYPUB", 6 + "afhzlxt", 7 "apdisk", 8 "apos", 9 "ardenivanov", ··· 24 "Caligraphic", 25 "CASL", 26 "Centralised", 27 + "changefreq", 28 "colour", 29 "colours", 30 "Containerisation", ··· 126 "rknight", 127 "Sanitise", 128 "scrobbler", 129 + "Scrobbles", 130 "scrobbling", 131 "searchi", 132 "shapeshifting", ··· 138 "svelte", 139 "timemachine", 140 "ttfb", 141 + "urlset", 142 "Varepsilon", 143 "vercel", 144 "vercelignore", ··· 155 "xrpc" 156 ], 157 "flagWords": [], 158 + "ignorePaths": [ 159 + "node_modules", 160 + "package-lock.json", 161 + "dist", 162 + "build" 163 + ], 164 + "ignoreRegExpList": [ 165 + "/(\\w+)'s/g" 166 + ], 167 "overrides": [ 168 { 169 "filename": "**/*.svelte", 170 + "ignoreRegExpList": [ 171 + "/>.*</", 172 + "/(\\w+)'s/g" 173 + ] 174 } 175 ] 176 }
+1 -1
src/lib/data/slug-mappings.ts
··· 38 { 39 slug: 'creativity', 40 publicationRkey: '3m6afhzlxt22p' // my creativity dump publication rkey 41 - }, 42 // Add more mappings as needed: 43 // { slug: 'notes', publicationRkey: 'xyz123abc' }, 44 // { slug: 'essays', publicationRkey: 'def456ghi' },
··· 38 { 39 slug: 'creativity', 40 publicationRkey: '3m6afhzlxt22p' // my creativity dump publication rkey 41 + } 42 // Add more mappings as needed: 43 // { slug: 'notes', publicationRkey: 'xyz123abc' }, 44 // { slug: 'essays', publicationRkey: 'def456ghi' },