From 6b09bb3fcaad6805c56ed51528dd86df33d13030 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 31 Jul 2026 13:21:53 -0700 Subject: [PATCH] terminal/snapshot: ignore hex files in typos Exclude annotated snapshot fixture hex files from typo checking. Their arbitrary binary byte sequences can otherwise be misidentified as misspelled words. --- typos.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/typos.toml b/typos.toml index 42303dd00..2deb781be 100644 --- a/typos.toml +++ b/typos.toml @@ -28,6 +28,8 @@ extend-exclude = [ "valgrind.supp", # Fuzz corpus (binary test inputs) "test/fuzz-libghostty/corpus/*", + # Annotated binary snapshot fixtures + "src/terminal/snapshot/testdata/*.hex", # Other "*.pdf", "*.data",