aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-11-24 19:18:27 +0200
committerGravatar GitHub <[email protected]>2020-11-24 19:18:27 +0200
commitccb975d7906a2f9a0df13ebe42665a47593c0a07 (patch)
tree7cabd0f3dfdfc1e03b843e0a36acc82ef642953a
parentUpdate flake8 rules ignoring list (diff)
Ignore class self and class method cls type annotations for flake8
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 86dc827..12500da 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,4 +11,6 @@ ignore=
# Docstring Quotes
D301,D302,
# Docstring Content
- D400,D401,D402,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414,D416,D417
+ D400,D401,D402,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414,D416,D417,
+ # Type annotations
+ ANN101,ANN102