-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy path.gitleaks.toml
27 lines (26 loc) · 1.15 KB
/
.gitleaks.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[extend]
path = "/etc/gitleaks/proton.toml"
[allowlist]
paths = [
# OpenVPN test data
'''^openvpn/src/main/cpp/asio/asio/src/examples/(.*)''',
'''^openvpn/src/main/cpp/openvpn/doc/(.*)''',
'''^openvpn/src/main/cpp/openvpn/sample/(.*)''',
'''^openvpn/src/main/cpp/openvpn/tests/(.*)''',
'''^openvpn/src/test/(.*)''',
'''^openvpn/src/main/cpp/openvpn3/doc/(.*)''',
'''^openvpn/src/main/cpp/openvpn3/test/(.*)''',
# OpenSSL and mbedtls - never modified by us.
'''^openvpn/src/main/cpp/openssl/(.*)$''',
'''^openvpn/src/main/cpp/mbedtls/(.*)''',
# A patch file with false positive - never modified by us.
'''^openvpn/src/main/cpp/openvpn/contrib/vcpkg-ports/pkcs11-helper/pkcs11-helper-001-RFC7512.patch''',
# R8 mapping file, contains function names, line numbers and other symbols that can be picked as false positives.
'''^app/build/outputs/mapping/(.*)/mapping.txt$''',
'''^app/build/outputs/mapping/(.*)/seeds.txt$''',
'''^app/build/outputs/mapping/(.*)/usage.txt$''',
# Semgrep configuration file
'''^custom/semgrep/rules.yaml$''',
# Added by CI job
'''^appetize-information.json$''',
]