pylint: Remove outdated disables
Looks like 2.14 added bad-option-value: https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/full.html locally-enabled is long gone: https://github.com/PyCQA/pylint/issues/2442 and so is bad-continuation: https://github.com/PyCQA/pylint/pull/3571 no-self-use was moved to an extension in this release: https://github.com/PyCQA/pylint/pull/6448
This commit is contained in:
parent
5aa89662e3
commit
6347d71d5c
|
|
@ -23,10 +23,8 @@ py-version=3.7
|
|||
[MESSAGES CONTROL]
|
||||
enable=all
|
||||
disable=locally-disabled,
|
||||
locally-enabled,
|
||||
suppressed-message,
|
||||
fixme,
|
||||
no-self-use,
|
||||
cyclic-import,
|
||||
blacklisted-name,
|
||||
logging-format-interpolation,
|
||||
|
|
@ -51,7 +49,6 @@ disable=locally-disabled,
|
|||
too-many-statements,
|
||||
too-few-public-methods,
|
||||
import-outside-toplevel,
|
||||
bad-continuation, # This lint disagrees with Black
|
||||
consider-using-f-string,
|
||||
logging-fstring-interpolation,
|
||||
raise-missing-from,
|
||||
|
|
|
|||
Loading…
Reference in New Issue