diff options
author | 2020-11-24 16:29:18 +0200 | |
---|---|---|
committer | 2020-11-24 16:29:18 +0200 | |
commit | 15974d340190e1fca9f2fbb8fdbad16ea2f34c1f (patch) | |
tree | a2dd61087ff664754f79bf471f0f5472d9d0c875 | |
parent | Remove unnecessary if check from Kubernetes job (diff) |
Update flake8 rules ignoring list
Co-authored-by: Joe Banks <[email protected]>
-rw-r--r-- | tox.ini | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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 |