summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-03-27 15:22:12 +0100
committerGuido Günther <agx@sigxcpu.org>2015-03-27 15:40:32 +0100
commitaf8cbc43b7d849faaf6caec269018959166ec7dc (patch)
tree110c9fbe88736e83cd9010d8b977b530f8a731fe
parent620461d8d36324f41f4fa63e89b67ca7a9637118 (diff)
Ignore long lines with pep8
We want to get there eventually but having this on now is just too much noise.
-rw-r--r--setup.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index b3408ed..d443f2a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -12,3 +12,7 @@ url = https://honk.sigxcpu.org/piki/projects/git-buildpackage/
target = build/apidocs/
fail-on = docstring_warning
modules = gbp, tests/test_*.py
+
+[pep8]
+# E501: ignore line length
+ignore=E501