Disable Vale.Spelling; enforce house style only#7
Merged
Conversation
The spell-checker arrived with the base Vale style and flags an endless tail of valid tool/package names on technical docs with no typo-catching benefit worth the vocab-curation toil. Keep the curated PaperMoon house-style rules plus Vale.Repetition and Vale.Terms. Adopting repos inherit this as the default house behavior.
eshaben
approved these changes
Jun 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Disable
Vale.Spellingin the canonical.vale.iniso the styleguide enforces house style, not spelling.Vale.Spelling = NOWhy
Vale.Spelling(Hunspell) arrived for free with the baseValestyle. On technical documentation it flags an endless tail of valid tool and package names —npm,dev,toolchain,Turbopack, etc. — as misspellings, with no meaningful typo-catching benefit to offset the ongoing vocab-curation toil.This came up downstream in polkadot-developers/polkadot-docs#1678: a reviewer started a thread collecting words Vale was flagging locally (
dev,devtools,npm,toolchain,Turbopack,PWallet) — all valid terms, allVale.Spellingfalse positives. We disabled it there; this proposes making it the canonical default so every adopting repo inherits the right behavior instead of rediscovering the noise and overriding locally.The curated PaperMoon house-style rules plus
Vale.RepetitionandVale.Termsstay enabled — those are the point of the styleguide.Tradeoff
Genuine prose typos are no longer caught by Vale and rely on review. On a heavily technical corpus that's a worthwhile trade given the false-positive rate.
Note on propagation
.vale.iniis not synced by adopters (the sync script copies onlystyles/PaperMoon/*.ymland the PaperMoon vocab). So this doesn't auto-propagate — it sets a better default for new repos copying this config as their template, and aligns the styleguide repo's own linting with that default.