We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd30b76 commit 3841656Copy full SHA for 3841656
mypy.ini
@@ -1,5 +1,14 @@
1
[mypy]
2
-ignore_missing_imports = True
3
-# required to support namespace packages
4
-# https://github.com/python/mypy/issues/14057
+# Is the project well-typed?
+strict = False
+
5
+# Early opt-in even when strict = False
6
+warn_unused_ignores = True
7
+warn_redundant_casts = True
8
+enable_error_code = ignore-without-code
9
10
+# Support namespace packages per https://github.com/python/mypy/issues/14057
11
explicit_package_bases = True
12
13
+# Disable overload-overlap due to many false-positives
14
+disable_error_code = overload-overlap
0 commit comments