diff options
Diffstat (limited to '.flake8')
| -rw-r--r-- | .flake8 | 25 |
1 files changed, 14 insertions, 11 deletions
@@ -1,12 +1,15 @@ [flake8] -exclude= - .tox - 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 - setuptools/site-patch.py F821 - setuptools/py*compat.py F811 +max-line-length = 88 + +# jaraco/skeleton#34 +max-complexity = 10 + +extend-exclude = + build + setuptools/_vendor + setuptools/_distutils + pkg_resources/_vendor + +extend-ignore = + # Black creates whitespace before colon + E203 |
