2021-12-06 10:57:57 +00:00
|
|
|
[flake8]
|
2022-10-18 11:00:52 +00:00
|
|
|
ignore = E203, E266, E501, W503, B950, D105, D106, D107
|
2021-12-06 10:57:57 +00:00
|
|
|
# line length is intentionally set to 80 here because black uses Bugbear
|
|
|
|
# See https://github.com/psf/black/blob/master/README.md#line-length for more details
|
2022-10-18 11:00:52 +00:00
|
|
|
max-line-length = 100
|
2021-12-06 10:57:57 +00:00
|
|
|
max-complexity = 18
|
2022-10-18 11:00:52 +00:00
|
|
|
select = B,C,E,F,W,T4,B9,D
|
|
|
|
docstring-convention = pep257
|