misc: fix warnings in pylint.rc

pylint.rc:1: [E0015(unrecognized-option), ] Unrecognized option found: profile, cache-size, include-ids, zope, max-branchs
pylint.rc:1: [E0012(bad-option-value), ] Bad option value for --disable. Don't recognize message no-self-use.
This commit is contained in:
Benjamin Dauvergne 2022-06-02 00:32:53 +02:00
parent 602e4284f6
commit e11dcd42af
1 changed files with 0 additions and 9 deletions

View File

@ -1,8 +1,6 @@
[MASTER]
profile=no
persistent=yes
ignore=vendor,Bouncers,ezt.py
cache-size=500
extension-pkg-allow-list=lxml
[MESSAGES CONTROL]
@ -29,7 +27,6 @@ disable=
missing-module-docstring,
no-else-return,
no-member,
no-self-use,
not-a-mapping,
not-an-iterable,
protected-access,
@ -60,7 +57,6 @@ disable=
[REPORTS]
output-format=parseable
include-ids=yes
[BASIC]
@ -81,10 +77,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
@ -119,7 +111,6 @@ indent-string=' '
max-args=10
max-locals=15
max-returns=6
max-branchs=12
max-statements=50
max-parents=7
max-attributes=7