summaryrefslogtreecommitdiff
path: root/.mypy.ini
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-06-29 21:55:45 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-06-29 21:56:08 +0200
commitc8744122f63698e6917fee2a870197f550cfd27a (patch)
tree42a929c6a85b81b3f585a81885f256f9b923fe60 /.mypy.ini
parent3811ec71a7f71ee3a0e2cde63309853b4149b7e5 (diff)
downloadqutebrowser-c8744122f63698e6917fee2a870197f550cfd27a.tar.gz
qutebrowser-c8744122f63698e6917fee2a870197f550cfd27a.zip
qt6 mypy: Fix unused-ignores with mypy-pyqt5
Diffstat (limited to '.mypy.ini')
-rw-r--r--.mypy.ini4
1 files changed, 1 insertions, 3 deletions
diff --git a/.mypy.ini b/.mypy.ini
index 3e83460f0..e0bff335f 100644
--- a/.mypy.ini
+++ b/.mypy.ini
@@ -11,9 +11,7 @@ disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
warn_redundant_casts = True
-## can't use warn_unused_ignores because of different Qt5/Qt6 ignores.
-## FIXME:v4 (lint) reenable when dropping Qt 5
-# warn_unused_ignores = True
+warn_unused_ignores = True
# warn_return_any = True
# no_implicit_reexport = True
strict_equality = True