You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
356 B
12 lines
356 B
[flake8]
|
|
max-line-length = 88
|
|
max-complexity = 16
|
|
# B = bugbear
|
|
# B9 = bugbear opinionated (incl line length)
|
|
select = C,E,F,W,B,B9
|
|
# E203: whitespace before ':' (black behaviour)
|
|
# E501: flake8 line length (covered by bugbear B950)
|
|
# W503: line break before binary operator (black behaviour)
|
|
ignore = E203,E501,W503
|
|
per-file-ignores=
|
|
__init__.py:F401
|