aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2022-12-30 13:07:09 +0100
committerGuido Günther <agx@sigxcpu.org>2022-12-30 13:08:05 +0100
commit5c9d0ef27bec7f21c35f3cf71bf0239c0710a44e (patch)
tree612a279cd360426cda18777a98eba366bec86271
parent319b847534900f4ab7ffb3334011b594b8af0540 (diff)
setup.cfg: Ignore line length and line break after operator
Taken verbatim from gbp
-rw-r--r--setup.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index aca3f68..673118a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,4 +3,5 @@ cover-package=whatmaps
[flake8]
# E501: ignore line length
-ignore=E501
+# E265: block comment should start with '# '
+ignore=E501,E265,W504 \ No newline at end of file