From bf0ac07c3a7bfc7f1a1774db3bfcb3b34c612337 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sat, 13 Jun 2026 04:55:54 -0400 Subject: [PATCH] Spellcheck: fix typos / extend allowlist 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 Co-Authored-By: Claude Opus 4.8 (1M context) --- .typos.toml | 5 +++++ _typos.toml | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 _typos.toml diff --git a/.typos.toml b/.typos.toml index cabb966..0dddf71 100644 --- a/.typos.toml +++ b/.typos.toml @@ -1,4 +1,9 @@ +[files] +extend-exclude = ["Manifest.toml", "**/Manifest.toml"] + [default.extend-words] +# Local variable abbreviating "Neumann" boundary condition in test/boundary_conditions.jl +neum = "neum" # Julia-specific functions indexin = "indexin" findfirst = "findfirst" diff --git a/_typos.toml b/_typos.toml deleted file mode 100644 index de4e4e1..0000000 --- a/_typos.toml +++ /dev/null @@ -1,2 +0,0 @@ -[files] -extend-exclude = ["Manifest.toml", "**/Manifest.toml"]