binutils-gdb/gdb/setup.cfg
Tom Tromey 68982f618b Prepare gdb for isort
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>
2024-04-02 11:21:31 -06:00

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