mirror of
https://github.com/tromey/gdb-gui.git
synced 2025-12-13 05:50:06 +01:00
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
|