aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.cfg8
1 files changed, 5 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index b3adc59..edcf3c5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -14,8 +14,10 @@ ignore =
E305,
# E401: multiple imports on one line
E401,
- # too many leading '#' for block comment
+ # E266: too many leading '#' for block comment
E266,
- # module level import not at top of file
- E402
+ # E402: module level import not at top of file
+ E402,
+ # E731: do not assign a lambda expression, use a def (too many false positives)
+ E731
max-line-length = 120