forked from smicallef/spiderfoot
-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpip-audit.toml
More file actions
27 lines (23 loc) · 904 Bytes
/
Copy pathpip-audit.toml
File metadata and controls
27 lines (23 loc) · 904 Bytes
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
# -------------------------------------------------------------------------------
# Dependency vulnerability scanning configuration
# -------------------------------------------------------------------------------
# Run: pip-audit --requirement requirements.txt --config pyproject.toml
#
# pip-audit options are configured in pyproject.toml [tool.pip-audit].
# This file documents the scanning approach.
#
# Recommended CI integration:
# pip install pip-audit
# pip-audit -r requirements.txt -r requirements-dev.txt --strict
#
# See also: scripts/audit-deps.sh
[tool.pip-audit]
# Use the OSV database (default, no API key needed)
vulnerability-service = "osv"
# Strict mode: non-zero exit on any vulnerability
strict = true
# Output format for CI
output = "json"
# Skip packages that don't have published vulnerability data
# (prevents false positives from private packages)
skip-editable = true