summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-01-16 17:03:46 -0500
committerGitHub <noreply@github.com>2021-01-16 17:03:46 -0500
commit1f5777c1f0222c087aaa877e0ac7c645376353f1 (patch)
tree8961ecf04097444ec8fb772037eb15dd20e55cd3
parent13a17a7608698c4299c20f18d5e04456d3a79a3a (diff)
parent33d09d12cb20412fbe1c490e7c3865202f3b7cf2 (diff)
downloadpython-setuptools-git-1f5777c1f0222c087aaa877e0ac7c645376353f1.tar.gz
Merge pull request #2510 from webknjaz/maintenance/flake8-extend-ignore
Use `extend-ignore` in flake8 config
-rw-r--r--.flake86
1 files changed, 1 insertions, 5 deletions
diff --git a/.flake8 b/.flake8
index f6a5cc86..5e876dc8 100644
--- a/.flake8
+++ b/.flake8
@@ -3,11 +3,7 @@ max-line-length = 88
exclude =
setuptools/_vendor
pkg_resources/_vendor
-ignore =
- # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
- W503
- # W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
- W504
+extend-ignore =
# Black creates whitespace before colon
E203
setuptools/site-patch.py F821