We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe5e17 commit b18980bCopy full SHA for b18980b
1 file changed
.pii-allowlist
@@ -2,8 +2,10 @@
2
# One regex per line. See https://github.com/vekexasia/git-shield#allowlist
3
4
# ── CSS hex color literals ──
5
-# 6-digit hex color values in palette definitions and test fixtures.
6
-#[0-9a-fA-F]{6}
+# OPF extracts hex colors in two forms: '"#cc9166' (with leading quote) or
+# 'C47A4F' (bare uppercase digits when the model drops the # prefix).
7
+# Pattern: optional leading quote/hash, exactly 6 hex digits, optional trailing noise.
8
+(?i)^["#]*[0-9a-f]{6}["#,]*$
9
10
# ── Public URLs that aren't PII ──
11
^https?://(www\.)?keepachangelog\.com(/.*)?$
0 commit comments