diff options
| -rw-r--r-- | .gitleaks.toml | 13 | 
1 files changed, 13 insertions, 0 deletions
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''', +  ] + +  | 
