1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
[flake8]
ignore=
# Whitespace before ':'
E203
# Too many leading '#' for block comment
E266
# Line break occurred before a binary operator
W503
# unindexed parameters in the str.format, see:
# https://pypi.org/project/flake8-string-format/
P1
# def statements on the same line with overload
E704
max_line_length = 88
max-complexity = 15
select = B,C,E,F,W,T4,B902,T,P
show_source = true
count = true
exclude =
.noxfile,
.nox,
__pycache__,
.git,
.github,
.gitignore,
.pytest_cache,
upath/tests/pathlib/_test_support.py,
upath/tests/pathlib/test_pathlib_3*.py,
|