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 bd44ba1 commit cb1f464Copy full SHA for cb1f464
mypy.ini
@@ -1,8 +1,18 @@
1
# Global options:
2
3
[mypy]
4
-warn_return_any = True
5
-warn_unused_configs = True
+# Turn on strict mode but then turn off the parts that don't currently pass.
+# TODO: remove the strict mode overrides amd make them pass
6
+strict = True
7
+disallow_incomplete_defs = False
8
+disallow_untyped_calls = False
9
+disallow_untyped_defs = False
10
+disallow_any_generics = False
11
+check_untyped_defs = False
12
+no_implicit_reexport = False
13
+disallow_subclassing_any = False
14
+# End strict mode overrides
15
+
16
enable_error_code = explicit-override
17
explicit_package_bases = True
18
exclude = (?x)(
0 commit comments