Skip to content

Commit 9f1b709

Browse files
yarikopticclaude
andcommitted
Update codespell config with skip patterns and ignore lists
Skip .yarn/ (bundled binary), _typos.toml (typos config). Add camelCase/PascalCase regex to ignore code identifiers. Add domain-specific terms: pris, wast, ags, abl, rouge, edn, requestor. Co-Authored-By: Claude Code 2.1.63 / Claude Opus 4.6 <noreply@anthropic.com>
1 parent 297296e commit 9f1b709

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.codespellrc

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
[codespell]
22
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
3-
skip = .git,.gitignore,.gitattributes,*.svg,vendor,*.lock,*.css,.codespellrc
3+
skip = .git,.gitignore,.gitattributes,*.svg,vendor,*.lock,*.css,.codespellrc,.yarn,_typos.toml
44
check-hidden = true
5-
# ignore-regex =
6-
# ignore-words-list =
5+
# Ignore camelCase and PascalCase identifiers (common in code)
6+
ignore-regex = \b[a-z]+[A-Z]\w*\b|\b[A-Z][a-z]+[A-Z]\w*\b
7+
# pris - prisma datasource name; wast - WebAssembly Text format;
8+
# ags,abl - abbreviations in language metadata; rouge - syntax highlighter;
9+
# edn - EDN file format (Clojure); requestor - valid legal term, used as prop name
10+
ignore-words-list = pris,wast,ags,abl,rouge,edn,requestor

0 commit comments

Comments
 (0)