aboutsummaryrefslogtreecommitdiff
path: root/gdb/setup.cfg
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-03-19 10:21:01 -0600
committerTom Tromey <tromey@adacore.com>2024-04-02 10:58:36 -0600
commit8a99b2b8174b8636ea74e6eb57c4fae8b7a1c626 (patch)
tree55ca09463b17f9b1d487ff01a1cef35733740ee4 /gdb/setup.cfg
parent374c1cbbf062e1d35cd285c583a99268a3e1de6c (diff)
downloadgdb-8a99b2b8174b8636ea74e6eb57c4fae8b7a1c626.zip
gdb-8a99b2b8174b8636ea74e6eb57c4fae8b7a1c626.tar.gz
gdb-8a99b2b8174b8636ea74e6eb57c4fae8b7a1c626.tar.bz2
Remove .flake8
I re-ran flake8 today and was puzzled to see W503 warnings. Eventually I found out that the setup.cfg config overrides .flake8. This patch merges the two and removes .flake8, to avoid future confusion. Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/setup.cfg')
-rw-r--r--gdb/setup.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/setup.cfg b/gdb/setup.cfg
index 13aefa0..2e83eb5 100644
--- a/gdb/setup.cfg
+++ b/gdb/setup.cfg
@@ -5,4 +5,5 @@
# E203: Whitespace before ':'
# E501: line too long
# E701: Multiple statements on one line (colon)
-ignore = E203,E501,E701
+# W503: line break before binary operator
+ignore = E203,E501,E701,W503