pylint: remove obsolete options

This commit is contained in:
Frédéric Péters 2022-06-02 09:07:53 +02:00
parent 78b707c7b7
commit 1092c8a75c
1 changed files with 1 additions and 9 deletions

View File

@ -1,8 +1,6 @@
[MASTER]
profile=no
persistent=yes
ignore=vendor,Bouncers,ezt.py
cache-size=500
[MESSAGES CONTROL]
disable=
@ -30,7 +28,6 @@ disable=
missing-module-docstring,
no-else-return,
no-member,
no-self-use,
non-parent-init-called,
not-callable,
possibly-unused-variable,
@ -64,7 +61,6 @@ disable=
[REPORTS]
output-format=parseable
include-ids=yes
[BASIC]
@ -85,10 +81,6 @@ ignore-mixin-members=yes
# (useful for classes with attributes dynamically set).
ignored-classes=SQLObject,WSGIRequest,Publisher,NullSessionManager
# 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
@ -123,7 +115,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