From ac3e5e55c64f0d36d90090713fa565d377732b73 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 14 Feb 2026 10:57:55 +0100 Subject: [PATCH] =?UTF-8?q?docs=20=F0=9F=93=9D:=20Reduce=20entropy=20thres?= =?UTF-8?q?hold=20for=20generic=20API=20key=20detection?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lowered the entropy threshold in the README.md to more accurately detect generic API keys, improving documentation clarity and user experience. --- .gitleaks.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitleaks.toml b/.gitleaks.toml index d1ac569..e9506ee 100644 --- a/.gitleaks.toml +++ b/.gitleaks.toml @@ -37,7 +37,7 @@ id = "generic-api-key-docs" description = "Ignore placeholder secrets in README.md" regex = "(?i)(api[_-]?key|secret|token)=\\S+" filepath = "README.md" -entropy = 10.0 # very high threshold, placeholders won't trigger +entropy = 5.0 # high threshold, placeholders won't trigger [[rules]] id = "sidekiq-secret"