irctest/setup.cfg

8 lines
274 B
INI
Raw Permalink Normal View History

2021-02-22 18:02:13 +00:00
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# E501: line too long
2021-02-22 18:02:13 +00:00
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
ignore = E203,E231,E501,W503
2021-02-22 18:02:13 +00:00
max-line-length = 88