mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 04:24:43 +00:00
My understanding is that pyproject.toml is the "new" way to configure Python tools. Although setup.cfg can't yet be removed (flake8 has some issue with pyproject.toml), we can move the isort config here. Approved-By: Simon Marchi <simon.marchi@efficios.com>
10 lines
277 B
INI
10 lines
277 B
INI
[flake8]
|
|
# Disable some formatted-related warnings that conflict with black's way of
|
|
# formatting code.
|
|
#
|
|
# E203: Whitespace before ':'
|
|
# E501: line too long
|
|
# E701: Multiple statements on one line (colon)
|
|
# W503: line break before binary operator
|
|
ignore = E203,E501,E701,W503
|