15 lines
660 B
INI
15 lines
660 B
INI
[flake8]
|
|
# Recommend matching the black line length (default 88),
|
|
# rather than using the flake8 default of 79:
|
|
max-line-length = 88
|
|
|
|
extend-ignore =
|
|
# Currently, `pycodestyle` gives false positives on the spaces black uses for slices,
|
|
# which flake8 reports as “Whitespace before ':' (E203)”. This is why we chose to ignore
|
|
# E203 until a version of flake8 is released with a fix of:
|
|
# https://github.com/PyCQA/pycodestyle/issues/373 is closed.
|
|
# https://www.flake8rules.com/rules/E203.html
|
|
E203,
|
|
# Let Black manage line length by ignoring “Line too long (E203)”
|
|
# https://www.flake8rules.com/rules/E501.html
|
|
E501,
|