aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-11-24 16:29:18 +0200
committerGravatar GitHub <[email protected]>2020-11-24 16:29:18 +0200
commit15974d340190e1fca9f2fbb8fdbad16ea2f34c1f (patch)
treea2dd61087ff664754f79bf471f0f5472d9d0c875
parentRemove unnecessary if check from Kubernetes job (diff)
Update flake8 rules ignoring list
Co-authored-by: Joe Banks <[email protected]>
-rw-r--r--tox.ini7
1 files changed, 2 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index b48e67b..86dc827 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,14 +4,11 @@ exclude=.cache,.venv,.git
docstring-convention=all
import-order-style=pycharm
ignore=
- B311,W503,E226,S311,T000
- # Missing Docstrings
- D100,D104,D105,D107,
+ # Todo comments
+ T000
# Docstring Whitespace
D203,D212,D214,D215,
# Docstring Quotes
D301,D302,
# Docstring Content
D400,D401,D402,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414,D416,D417
- # Type Annotations
- ANN002,ANN003,ANN101,ANN102,ANN204,ANN206