aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/.flake82
-rw-r--r--gdb/setup.cfg3
2 files changed, 2 insertions, 3 deletions
diff --git a/gdb/.flake8 b/gdb/.flake8
deleted file mode 100644
index a6f727b..0000000
--- a/gdb/.flake8
+++ /dev/null
@@ -1,2 +0,0 @@
-[flake8]
-ignore = E501, W503
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