setup.cfg•581 B
[flake8]
# https://github.com/ambv/black#line-length
max-line-length = 88
ignore =
# E203: whitespace before ':' (defer to black)
E203,
# E231: missing whitespace after ',' (defer to black)
E231,
# E501: line length (defer to black)
E501,
# W503: break before binary operators (defer to black)
W503,
# A003: [builtins] allow class attributes to be named after builtins (e.g., `id`)
A003,
# E704: Allow multiple statements on one line
E704,
[pep8]
max-line-length = 88
ignore =
E701, # E701: multiple statements on one line (flags py3 inline type hints)