diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-06-30 13:28:18 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:42:28 +0200 |
| commit | 9f87ab4bbab048b527585929135cab80fafd9ef9 (patch) | |
| tree | 835e41c1660ab12a2f3299049d2e15f8495d3b4b /web-server/.pylintrc | |
| parent | 5c673272747ed14e5668b2f4301f0f853b400ee1 (diff) | |
Address a number of pylint issues
Diffstat (limited to 'web-server/.pylintrc')
| -rw-r--r-- | web-server/.pylintrc | 6 |
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 |
