From 6347d71d5cadc4f27e947c5ccf172a4eb9cae785 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 8 Jun 2022 12:02:12 +0200 Subject: 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 --- .pylintrc | 3 --- 1 file changed, 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index c5a1289fb..47d3a163d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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, -- cgit v1.2.3-54-g00ecf