summaryrefslogtreecommitdiff
path: root/web-server/.pylintrc
diff options
context:
space:
mode:
authorjc0b <j@jc0b.computer>2020-06-30 14:12:07 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-08-24 19:43:10 +0200
commit66b2d85385d05abb590535da60341876ecdbab71 (patch)
tree0656f64a4179d419adac86e488e21def7a7fa2b8 /web-server/.pylintrc
parent88d8a9cbeae3466230db6bd13120bd4438abbc66 (diff)
parentc99ef7504a1374170f88b89faeb7e6dec6a55253 (diff)
Merge changes with upstream
Diffstat (limited to 'web-server/.pylintrc')
-rw-r--r--web-server/.pylintrc6
1 files changed, 4 insertions, 2 deletions
diff --git a/web-server/.pylintrc b/web-server/.pylintrc
index c7855f0e..f25e4fc2 100644
--- a/web-server/.pylintrc
+++ b/web-server/.pylintrc
@@ -62,7 +62,9 @@ confidence=
# --disable=W".
disable=duplicate-code,
missing-module-docstring,
- invalid-name
+ invalid-name,
+ bare-except,
+ too-few-public-methods
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
@@ -484,7 +486,7 @@ valid-metaclass-classmethod-first-arg=cls
max-args=5
# Maximum number of attributes for a class (see R0902).
-max-attributes=7
+max-attributes=12
# Maximum number of boolean expressions in an if statement (see R0916).
max-bool-expr=5