pylint: remove obsolete options

This commit is contained in:
Frédéric Péters 2022-07-06 13:04:36 +02:00
parent 55587cea46
commit 6d19c336f9
1 changed files with 1 additions and 9 deletions

View File

@ -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