summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-11-14 11:53:05 -0500
committerTres Seaver <tseaver@palladion.com>2016-11-14 11:53:05 -0500
commit65e30325765c2816683a7432c80930becaa588bd (patch)
tree869d4f794277fd5fe45860d94351670d89125b85 /setup.cfg
parent3a21f7dfd350ea16808e7408c194328630471962 (diff)
downloadpyramid-65e30325765c2816683a7432c80930becaa588bd.tar.gz
pyramid-65e30325765c2816683a7432c80930becaa588bd.tar.bz2
pyramid-65e30325765c2816683a7432c80930becaa588bd.zip
Suppress E305 and E306 errors, which were newly failing.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 85b6dd367..df4013f6e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -47,6 +47,10 @@ ignore =
E302,
# E303: too many blank lines (3)
E303,
+ # E305: expected 2 blank lines after class or function definition, found 1
+ E305,
+ # E306: expected 1 blank line before a nested definition, found 0
+ E306,
# E501: line too long (82 > 79 characters)
E501,
# E731: do not assign a lambda expression, use a def