ci: configure 'typos' to tolerate all 8-12 character hex identifiers

Previously we tolerated only 10 character hex identifiers as commit
references, but they are typically anywhere from 8 to 12 characters.
This commit is contained in:
Brad King
2025-07-02 08:36:06 -04:00
parent e9b6fca91f
commit 7c8e4687b9

View File

@@ -18,7 +18,7 @@ locale = "en-us"
# `extend-ignore-identifiers-re` to this section,
# please also modify the `.gitlab/ci/typos.bash`
# script accordingly.
#extend-ignore-identifiers-re=["\\b[0-9a-f]{10}\\b"]
#extend-ignore-identifiers-re=["\\b[0-9a-f]{8,12}\\b"]
# Add repo-wide false positives here in the form of `word = "word"`.
# Check the manual for details.