diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-02-06 09:54:00 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-02-14 08:09:04 -0500 |
commit | 0ae1e5aad39f53333150837539417a4d7c38920d (patch) | |
tree | 39ad2e1f6b356ec3bf78b7676b8d37fe25ae5c58 /.flake8 | |
parent | 5987484a6c1f48d733bb525bfe316500002b6993 (diff) | |
download | pytest-runner-0ae1e5aad39f53333150837539417a4d7c38920d.tar.gz |
Suppress E117 as workaround for PyCQA/pycodestyle#836
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,2 +1,10 @@ [flake8] -ignore = W191,W503 +ignore = + # Allow tabs for indentation + W191 + # Workaround for https://github.com/PyCQA/pycodestyle/issues/836 + E117 + # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513 + W503 + # W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545 + W504 |