lint: provide bandit configuration

`bandit` is a fast Python vulnerability scanner, this provides a default
configuration file for it for those that want to run it.

`bandit --ini .bandit -r osbuild/` will get you results.
This commit is contained in:
Simon de Vlieger 2023-03-20 13:21:38 +01:00
parent d9e97a4830
commit c4040191b6

3
.bandit Normal file
View file

@ -0,0 +1,3 @@
[bandit]
exclude = test
skips = B101,B404,B603,B607