summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-04-12 11:36:04 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-04-12 11:36:04 -0400
commit9f06de212eb53c35ea52781796c58761fcd06de3 (patch)
treed22f548ed6ce513b69e7ef478c04a0039a55c27f
parente302df43fc90a3db2bc9119c9e0dad08a754c0f5 (diff)
downloadpytest-runner-9f06de212eb53c35ea52781796c58761fcd06de3.tar.gz
When ignoring linter warnings, document the reason.
-rw-r--r--.flake86
1 files changed, 5 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index e9955e7..df5f527 100644
--- a/.flake8
+++ b/.flake8
@@ -1,2 +1,6 @@
[flake8]
-ignore = W191,W503
+ignore =
+ # Allow tabs for indentation
+ W191
+ # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
+ W503