Open
Description
What version of Go are you using (go version
)?
$ go version go version go1.20.2 darwin/amd64
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env MacOS amd64 darwin
Hi,
Requesting to introduce a config file (ideally) or a flag that allows users to explicitly exclude some vulnerabilities? Maybe until they resolve them, they can be suppressed in CI so on.
Thanks
Config file
$ govulncheck -config vuln.yaml ./...
# vuln.yaml
vulnerability:
exclude:
- GO-2023-1704
- GO-2023-1705
Flag
$ govulncheck \
-exclude GO-2023-1704 \
-exclude GO-2023-1705 \
./...