Add spellchecking for camelCase, PascalCase, and kebab-case

This commit is contained in:
Julian Stirling 2026-02-22 11:02:59 +00:00
parent 3f54084d14
commit 66b4a06e87
9 changed files with 40 additions and 8 deletions

View file

@ -76,7 +76,10 @@ spelling:
# in .rules_common overwrites any rules defined in .python
- .rules_common
script:
# Run with our standard regex, best for normal text and snake-case
- codespell .
# Run again with a second regex that finds issues in camelCase, PascalCasem and kebab-case
- codespell --config .codespellrc2 .
# Python static analysis and formatting with ruff
# Only runs when a .py file is edited