From 64fe22b1562a43c6c372f8d4861ea697857da361 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 20 Sep 2024 08:09:15 +0200 Subject: add .gitleaks.toml --- .gitleaks.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitleaks.toml diff --git a/.gitleaks.toml b/.gitleaks.toml new file mode 100644 index 0000000..dbc852b --- /dev/null +++ b/.gitleaks.toml @@ -0,0 +1,13 @@ +[allowlist] + description = "Global Allowlist" + + # Ignore based on any subset of the file path + paths = [ + # Ignore documentation + '''README.md''', + + # Ignore tests + '''tests\/.*\.phpt''', + ] + + -- cgit