8 lines
272 B
Text
8 lines
272 B
Text
|
[flake8]
|
||
|
ignore = E203, E266, E501, W503, B950
|
||
|
# 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
|
||
|
max-line-length = 80
|
||
|
max-complexity = 18
|
||
|
select = B,C,E,F,W,T4,B9
|