my website at ewancroft.uk

chore(cspell): compact ignorePaths and ignoreRegExpList

Collapse ignorePaths and ignoreRegExpList to inline arrays and compact svelte override regex list

ewancroft.uk 3b566052 4820f67f

verified
Changed files
+3 -13
+3 -13
.cspell.json
··· 150 150 "xrpc" 151 151 ], 152 152 "flagWords": [], 153 - "ignorePaths": [ 154 - "node_modules", 155 - "package-lock.json", 156 - "dist", 157 - "build" 158 - ], 159 - "ignoreRegExpList": [ 160 - "/(\\w+)'s/g" 161 - ], 153 + "ignorePaths": ["node_modules", "package-lock.json", "dist", "build"], 154 + "ignoreRegExpList": ["/(\\w+)'s/g"], 162 155 "overrides": [ 163 156 { 164 157 "filename": "**/*.svelte", 165 - "ignoreRegExpList": [ 166 - "/>.*</", 167 - "/(\\w+)'s/g" 168 - ] 158 + "ignoreRegExpList": ["/>.*</", "/(\\w+)'s/g"] 169 159 } 170 160 ] 171 161 }