pylint: remove obsolete options

This commit is contained in:
Frédéric Péters 2022-06-01 18:59:11 +02:00
parent 8640f62d31
commit 8ab20fe713
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=
@ -29,7 +27,6 @@ disable=
missing-module-docstring,
no-else-return,
no-member,
no-self-use,
non-parent-init-called,
not-callable,
possibly-unused-variable,
@ -63,7 +60,6 @@ disable=
[REPORTS]
output-format=parseable
include-ids=yes
[BASIC]
@ -84,10 +80,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
@ -122,7 +114,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