aboutsummaryrefslogtreecommitdiff
path: root/gdb/setup.cfg
blob: d33058ea7f0fa9b2bacc3cbde4e046e1a1bf20cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[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