summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-06-08 12:02:12 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-06-08 12:02:12 +0200
commit6347d71d5cadc4f27e947c5ccf172a4eb9cae785 (patch)
treed72d1ab9c46d2039d119e0b9eda5ea07304272c7
parent5aa89662e36a34cd2812500068c80987e2a0c833 (diff)
downloadqutebrowser-6347d71d5cadc4f27e947c5ccf172a4eb9cae785.tar.gz
qutebrowser-6347d71d5cadc4f27e947c5ccf172a4eb9cae785.zip
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
-rw-r--r--.pylintrc3
1 files changed, 0 insertions, 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,