Summary
The daily Website links and spellcheck workflow reports valid LVIS class names as spelling errors:
manger → manager
trough → through
These are valid nouns in the LVIS class label manger/trough.
Root cause
The Check spelling step in .github/workflows/links.yml runs codespell with:
--builtin clear,rare,informal,en-GB_to_en-US
Codespell's rare dictionary explicitly maps manger to manager and trough to through, so enabling it on rendered website text creates these false positives.
Proposed fix
Remove rare from the workflow's codespell built-ins:
--builtin clear,informal,en-GB_to_en-US
This fixes the source rather than adding individual ignore-list exceptions, while retaining the existing clear typo, informal usage, and US-English checks.
Summary
The daily
Website links and spellcheckworkflow reports valid LVIS class names as spelling errors:manger→managertrough→throughThese are valid nouns in the LVIS class label
manger/trough.Root cause
The
Check spellingstep in.github/workflows/links.ymlruns codespell with:Codespell's
raredictionary explicitly mapsmangertomanagerandtroughtothrough, so enabling it on rendered website text creates these false positives.Proposed fix
Remove
rarefrom the workflow's codespell built-ins:This fixes the source rather than adding individual ignore-list exceptions, while retaining the existing clear typo, informal usage, and US-English checks.