summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-04 20:19:26 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-04 20:21:46 +0200
commitaea58d6e25484d404ef9ed570e36631944b237ea (patch)
tree424521faaec660b8807206fccd0b8e36ee64ddf0 /pylintrc
parentda50950a958e162513554961f3cceca2467021c0 (diff)
downloadpylint-git-aea58d6e25484d404ef9ed570e36631944b237ea.tar.gz
Deprecate ``ignore-mixin-members`` + add ``ignored-checks-for-mixins``
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 0 insertions, 4 deletions
diff --git a/pylintrc b/pylintrc
index 902b3e9c2..c48162362 100644
--- a/pylintrc
+++ b/pylintrc
@@ -371,10 +371,6 @@ property-classes=abc.abstractproperty
[TYPECHECK]
-# Tells whether missing members accessed in mixin class should be ignored.
-# A class is considered mixin if its name matches the mixin-class-rgx option.
-ignore-mixin-members=yes
-
# Regex pattern to define which classes are considered mixins if ignore-mixin-
# members is set to 'yes'
mixin-class-rgx=.*MixIn