summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>2021-01-09 05:37:11 +0100
committerGitHub <noreply@github.com>2021-01-08 23:37:11 -0500
commit77fbe1df4af6d8f75f44440e89ee1bc249c9f2e0 (patch)
tree6572c2882b0d78c4326679cc23c1fe5e332f7b62
parenta9b3f681dea9728235c2a9c68165f7b5cbf350ab (diff)
downloadpytest-runner-77fbe1df4af6d8f75f44440e89ee1bc249c9f2e0.tar.gz
Use `extend-ignore` in flake8 config (#33)
* Use `extend-ignore` in flake8 config This option allows to add extra ignored rules to the default list instead of replacing it. The default exclusions are: E121, E123, E126, E226, E24, E704, W503 and W504. Fixes #28. Refs: * https://github.com/pypa/setuptools/pull/2486/files#r541943356 * https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-extend-ignore * https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-ignore * Enable complexity limit. Fixes jaraco/skeleton#34. * Replace pep517.build with build (#37) * Replace pep517.build with build Resolves #30 * Prefer simple usage Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> * Use license_files instead of license_file in meta (#35) Singular `license_file` is deprecated since wheel v0.32.0. Refs: * https://wheel.readthedocs.io/en/stable/news.html * https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
-rw-r--r--.flake86
1 files changed, 1 insertions, 5 deletions
diff --git a/.flake8 b/.flake8
index 59a51f8..48b2e24 100644
--- a/.flake8
+++ b/.flake8
@@ -4,10 +4,6 @@ max-line-length = 88
# jaraco/skeleton#34
max-complexity = 10
-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