summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index e7f44bf1..2644057c 100644
--- a/pylintrc
+++ b/pylintrc
@@ -28,6 +28,7 @@ load-plugins=
pylint.extensions.code_style,
pylint.extensions.set_membership,
pylint.extensions.redefined_variable_type,
+ pylint.extensions.for_any_all,
# Use multiple processes to speed up Pylint.
jobs=1
@@ -300,6 +301,9 @@ ignored-modules=typed_ast.ast3
# (useful for classes with attributes dynamically set).
ignored-classes=SQLObject
+# Regex pattern to define which classes are considered mixins.
+mixin-class-rgx=.*Mix[i|I]n
+
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E0201 when accessed. Python regular
# expressions are accepted.