From 1c38c6d3a8506bcdebbd58907528aefa5c5f6b5b Mon Sep 17 00:00:00 2001 From: Nikita Manovich <40690625+nmanovic@users.noreply.github.com> Date: Fri, 28 Dec 2018 13:56:42 +0300 Subject: [PATCH] Skip 28 bandit warnings (lxml, subprocess, ...). (#259) * Skip 28 bandit warnings (lxml, subprocess, ...). Still have 4 warnings which worth to fix. --- .bandit | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .bandit diff --git a/.bandit b/.bandit new file mode 100644 index 00000000..17c7fbe6 --- /dev/null +++ b/.bandit @@ -0,0 +1,8 @@ +[bandit] +# B101 : assert_used +# B102 : exec_used +# B320 : xml_bad_etree +# B404 : import_subprocess +# B406 : import_xml_sax +# B410 : import_lxml +skips: B101,B102,B320,B404,B406,B410