From c4040191b66324079991d2d1462947919d9a54c6 Mon Sep 17 00:00:00 2001 From: Simon de Vlieger Date: Mon, 20 Mar 2023 13:21:38 +0100 Subject: [PATCH] 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. --- .bandit | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .bandit diff --git a/.bandit b/.bandit new file mode 100644 index 00000000..5197b4c5 --- /dev/null +++ b/.bandit @@ -0,0 +1,3 @@ +[bandit] +exclude = test +skips = B101,B404,B603,B607