Spellcheck: fix typos / extend allowlist#86
Merged
ChrisRackauckas merged 1 commit intoJun 13, 2026
Conversation
The CI typos run read _typos.toml (only a Manifest exclude), which shadowed the comprehensive .typos.toml allowlist, so spellcheck failed on `neum`. Consolidate into the single canonical .typos.toml: fold in the Manifest exclude and allowlist `neum` (local variable abbreviating "Neumann" in test/boundary_conditions.jl, a false positive), and remove the redundant _typos.toml so the allowlist is actually applied. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Fixes the failing Spell Check (
crate-ci/typos@v1.47.0) CI.Root cause: the repo had both
_typos.toml(containing only a Manifest exclude) and a comprehensive.typos.tomlallowlist.typosreads_typos.tomlin preference to.typos.toml, so the allowlist was never applied (typos --dump-configconfirmed[default.extend-words]was empty). Spellcheck then failed onneum.Fix: consolidate into the single canonical
.typos.toml:.typos.toml(thedocs/andtest/Manifest.toml are tracked).neum— a local variable abbreviating "Neumann" boundary condition intest/boundary_conditions.jl(paired withdircfor Dirichlet); a false positive, not a code-identifier change._typos.tomlso the allowlist is actually applied.typosnow exits 0 with zero findings (verified locally with 1.47.0).Ignore until reviewed by @ChrisRackauckas.