summaryrefslogtreecommitdiffstats
path: root/pylintrc
diff options
context:
space:
mode:
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc7
1 files changed, 4 insertions, 3 deletions
diff --git a/pylintrc b/pylintrc
index f97b40b7a..51f151e2c 100644
--- a/pylintrc
+++ b/pylintrc
@@ -66,12 +66,13 @@ confidence=
# Arranged by category: Convention, Error, Information, Refactor, Warning.
# Category per line (wrapped categories are indented) using symbolic names instead of ids.
disable=missing-docstring, invalid-name, old-style-class, bad-continuation,
- no-member, not-callable, no-name-in-module,
+ no-member, not-callable, no-name-in-module, super-on-old-class,
locally-disabled,
R,
- unused-argument, broad-except, fixme, protected-access, import-error, unidiomatic-typecheck,
+ unused-argument, fixme, protected-access, import-error, unidiomatic-typecheck,
unused-variable, global-statement, attribute-defined-outside-init, arguments-differ,
- no-init, non-parent-init-called, super-init-not-called, signature-differs
+ no-init, non-parent-init-called, super-init-not-called, signature-differs,
+ broad-except, pointless-except
[REPORTS]