summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-18 21:56:04 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-19 20:32:26 +0200
commit313e1e3ab217258db210b57f56f996335322836b (patch)
tree0568af73c9ccaacd6fe7b7f86b556da516b553da /pylintrc
parent007b0dc628a7677acae031862b7f2e3013e03d84 (diff)
downloadastroid-git-313e1e3ab217258db210b57f56f996335322836b.tar.gz
Ignore duplicate code for now because astroid/brain is full of it
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index edc173ae..a3582fdf 100644
--- a/pylintrc
+++ b/pylintrc
@@ -104,7 +104,9 @@ disable=fixme, invalid-name, missing-docstring, too-few-public-methods,
# black handles these
format,
# temporary until we fix the problems with InferenceContexts
- no-member
+ no-member,
+ # everything here is legacy not checked in astroid/brain
+ duplicate-code,
[BASIC]