From 6d19c336f923115ab92fc405a787b5b800d7fb75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 6 Jul 2022 13:04:36 +0200 Subject: [PATCH] pylint: remove obsolete options --- pylint.rc | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/pylint.rc b/pylint.rc index c7cb64c..d6baa4a 100644 --- a/pylint.rc +++ b/pylint.rc @@ -1,7 +1,5 @@ [MASTER] -profile=no persistent=yes -cache-size=500 [MESSAGES CONTROL] disable= @@ -27,7 +25,6 @@ disable= missing-module-docstring, no-else-return, no-member, - no-self-use, non-parent-init-called, not-callable, possibly-unused-variable, @@ -62,7 +59,6 @@ disable= [REPORTS] output-format=parseable -include-ids=yes [BASIC] @@ -83,10 +79,6 @@ ignore-mixin-members=yes # (useful for classes with attributes dynamically set). ignored-classes= -# When zope mode is activated, add a predefined set of Zope acquired attributes -# to generated-members. -zope=no - # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E0201 when accessed. generated-members=objects,DoesNotExist,id,pk,_meta,base_fields,context @@ -120,7 +112,7 @@ indent-string=' ' max-args=10 max-locals=15 max-returns=6 -max-branchs=12 +max-branches=12 max-statements=50 max-parents=7 max-attributes=7