mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
68982f618b
This patch prepares gdb for isort: it adds a couple of isort marker comments where needed, and it adds an isort clause to setup.cfg. Approved-By: Simon Marchi <simon.marchi@efficios.com>
13 lines
302 B
INI
13 lines
302 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
|
|
|
|
[isort]
|
|
profile = black
|