From a801928df621044170d163b4882924d5c4a4ea16 Mon Sep 17 00:00:00 2001 From: coffeedogs Date: Fri, 11 May 2018 12:49:38 +0100 Subject: [PATCH] Fixed: Codacy should ignore invalid variable/function names for now --- bandit.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bandit.yml b/bandit.yml index 4d24be14..2fd71c50 100644 --- a/bandit.yml +++ b/bandit.yml @@ -1,4 +1,5 @@ # Codacy uses Bandit. # Asserts are accepted throughout the project. -skips: ['B101'] +# invalid names will be fixed in the future. +skips: ['B101', 'C0103']