]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
typos.toml: exclude more from typo checks
authorDaniel Stenberg <daniel@haxx.se>
Wed, 1 Oct 2025 06:19:35 +0000 (08:19 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 1 Oct 2025 07:03:27 +0000 (09:03 +0200)
- exclude visual studio project templates
- exclude test cases
- allow 'proxys' which is used for "secure proxy" in test code
- allow Tru64 and secur32

Closes #18789

.github/scripts/typos.toml

index 73ecac136aca37da40e44d3f4f3c616be8591f6e..97c682b5b6ee590ec6772242cb838e828ec33b85 100644 (file)
@@ -12,6 +12,10 @@ extend-ignore-identifiers-re = [
   "^[0-9a-zA-Z+]{64,}$",  # possibly base64
   "^(Januar|eyeballers|HELO_smtp|kno22|MkTypLibCompatible|optin|passin|perfec|__SecURE|SMTP_HELO|v_alue)$",
   "^(clen|req_clen|smtp_perform_helo|smtp_state_helo_resp|_stati64)$",
+  "^Tru64$",
+  "secur32",
+  # this should be limited to tests/http/*. Short for secure proxy.
+  "proxys",
 ]
 
 extend-ignore-re = [
@@ -25,4 +29,7 @@ extend-exclude = [
   "docs/THANKS",
   "packages/*",
   "scripts/wcurl",
+  "projects/Windows/tmpl/curl.vcxproj",
+  "projects/Windows/tmpl/libcurl.vcxproj",
+  "tests/data/test*",
 ]