aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-09-11 15:46:31 +0200
committerGuido Günther <agx@sigxcpu.org>2016-09-12 08:52:15 +0200
commit1dd288acea6423371f71ab41e256fd78bc05b123 (patch)
tree4226f47b96fe3739a222360cc7323d6851255076
parent495e3101a665a35ae174ec31418a640d89a098c6 (diff)
flake8: ignore "E265: block comment should start with '# '"
since epydocs section markers use #{ and #}
-rw-r--r--setup.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 5271e1a6..79e5609e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -15,6 +15,7 @@ modules = gbp, tests/test_*.py
[flake8]
# E501: ignore line length
-ignore=E501
+# E265: block comment should start with '# '
+ignore=E501,E265
builtins=unicode,execfile,raw_input