Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[codespell]
# English typo detection (Japanese text is ignored). Shared by CI / local.
skip = ./.git,./node_modules,./.ruff_cache,./.pytest_cache,*.json,*.lock
# Comma-separated words to treat as correct (proper nouns / intentional spellings).
ignore-words-list = thinkyou
5 changes: 5 additions & 0 deletions .github/workflows/skill-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,8 @@ jobs:
# Auto-discovers every tests/test_*.py (scoring, secret-scan, inventory),
# so new test files run in CI without editing this workflow.
python3 -m unittest discover -s tests -p 'test_*.py' -v

- name: Spell check (codespell)
run: |
python3 -m pip install --quiet codespell
codespell