Is there a config option to only report High confidence and High Severity Issues? #1321
Replies: 1 comment
|
Short answer: I do not think The config-file options listed in the docs are For severity and confidence filtering, use the CLI flags instead, for example: bandit -r . --severity-level high --confidence-level highThose options are documented in the man page: https://bandit.readthedocs.io/en/latest/man/bandit.html#options For GitHub Actions, the Bandit action exposes them as action inputs named So a practical workflow would be: keep plugin selection/exclusions in |
Uh oh!
There was an error while loading. Please reload this page.
In documentation, I can't see any option to report only High confidence and High Severity Issues in config file - https://bandit.readthedocs.io/en/latest/config.html. However, I do see that github actions input have severity and confidence -https://bandit.readthedocs.io/en/latest/ci-cd/github-actions.html. Can I set these options in config file as well?
All reactions