summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authortoofar <toofar@spalge.com>2023-10-11 19:10:45 +1300
committertoofar <toofar@spalge.com>2023-10-11 19:16:01 +1300
commit750e2b0a72e39c1e915b63d8fca245e0094ef4d6 (patch)
tree5884c013aca4762bb930d69cc0968e0656bf4f56 /.pylintrc
parent2c503bf35d5f465e5adf2838ee7b1b9d1775e1e1 (diff)
downloadqutebrowser-750e2b0a72e39c1e915b63d8fca245e0094ef4d6.tar.gz
qutebrowser-750e2b0a72e39c1e915b63d8fca245e0094ef4d6.zip
pylint 3.0 deprectations
Changelog: https://pylint.pycqa.org/en/latest/whatsnew/3/3.0/index.html#summary-release-highlights remove `__implements__`: That attribute is apparently from a rejected PEP. They say to inherit from BaseChecker, which we are already doing. https://github.com/pylint-dev/pylint/pull/8404 check_messages -> only_required_for_messages: Seems straightforward instructions. I haven't actually tested it. https://github.com/pylint-dev/pylint/pull/8409 remove emptystring extension: Looks like this has been replaced by https://pylint.readthedocs.io/en/stable/user_guide/messages/convention/use-implicit-booleaness-not-comparison-to-string.html Which is disabled by default but we have `enable=ALL`, so I guess that means we indeed have it enabled. And update changelog URLs.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc1
1 files changed, 0 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index a02732c2d..46a8ae2e8 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -3,7 +3,6 @@ ignore=resources.py
extension-pkg-whitelist=PyQt5,PyQt6,sip
load-plugins=qute_pylint.config,
pylint.extensions.docstyle,
- pylint.extensions.emptystring,
pylint.extensions.overlapping_exceptions,
pylint.extensions.code_style,
pylint.extensions.comparison_placement,