summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2021-10-24 18:07:06 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2021-10-24 19:30:44 +0200
commit1620fb33e852e3d36244244cd99ee2d91aedfc5a (patch)
tree5804622a40d18d9626e197cf86ee03550e84535f /pylintrc
parent38849d81df8e7aff41b59244020c546da1d1798c (diff)
downloadastroid-git-1620fb33e852e3d36244244cd99ee2d91aedfc5a.tar.gz
Refactor and remove ``redefined-variable-type`` disable
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc5
1 files changed, 0 insertions, 5 deletions
diff --git a/pylintrc b/pylintrc
index a8618719..e7f44bf1 100644
--- a/pylintrc
+++ b/pylintrc
@@ -96,11 +96,6 @@ disable=fixme,
too-many-statements,
# We know about it and we're doing our best to remove it in 2.0 (oups)
cyclic-import,
- # The check is faulty in most cases and it doesn't take in
- # account how the variable is being used. For instance,
- # using a variable that is a list or a generator in an
- # iteration context is fine.
- redefined-variable-type,
# Requires major redesign for fixing this (and private
# access in the same project is fine)
protected-access,