summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
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