Update .pylintrc (#2009)

Per: https://pylint.pycqa.org/en/latest/user_guide/messages/refactor/old-no-self-use.html

R0201 was renamed → R6301
This commit is contained in:
George Pollard
2022-06-02 10:18:02 +12:00
committed by GitHub
parent 74a24b4f2e
commit ca22611892

View File

@ -5,7 +5,6 @@ init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.app
[MESSAGES CONTROL]
# Pointless whinging.
# W0613 = Unused argument
# R0201 = Method could be a function
# R0801 = Similar lines https://github.com/PyCQA/pylint/issues/214
# R0901 = Too many ancestors
# R0902 = Too many instance attributes
@ -20,7 +19,7 @@ init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.app
# C0111 = Missing docstring
# C0112 = Empty docstring
disable=C0103,C0111,R0201,R0801,R0901,R0902,R0903,R0904,R0911,R0913,R0914
disable=C0103,C0111,R0801,R0901,R0902,R0903,R0904,R0911,R0913,R0914
[FORMAT]
max-line-length=80
@ -29,4 +28,4 @@ max-line-length=80
output-format=colorized
[BASIC]
good-names=i,j,k,_,logger
good-names=i,j,k,_,logger