pyupio / safety

Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.
https://safetycli.com/product/safety-cli
MIT License
1.66k stars 141 forks source link

Let 'ignore' take a list of coma separated ID #341

Closed bagerard closed 1 year ago

bagerard commented 3 years ago

As it is now, in case we want to ignore multiple vulnerabilities, we have to use safety check -i 1234 -i 4567 -i 89101

I'd like to suggest to start supporting coma separated list in a similar fashion as well known similar tools are doing (flake8, pylint, etc)

safety check -i 1234,4567,89101

Would you welcome a PR?

yeisonvargasf commented 3 years ago

Hi @bagerard , sure! A PR is welcome!