From 20a917b0749b9af7601d0fbbe781806dc9f87493 Mon Sep 17 00:00:00 2001 From: g_it Date: Wed, 8 Apr 2026 16:02:18 +0200 Subject: [PATCH] Restrict typos to md and html. --- typos.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 typos.toml diff --git a/typos.toml b/typos.toml new file mode 100644 index 0000000..d95c5e1 --- /dev/null +++ b/typos.toml @@ -0,0 +1,13 @@ +[default] +# Only check these file extensions +extend-include = ["*.md", "*.html"] + +# Exclude code directories +exclude = [ + ".git", + "target", + "node_modules", + ".forgejo", + "src", + "bin", +]