There was an error while loading. Please reload this page.
1 parent ab841b8 commit a86d049Copy full SHA for a86d049
1 file changed
pyproject.toml
@@ -4,9 +4,25 @@ multi_line_output = 3
4
order_by_type = false
5
6
[tool.mypy]
7
+files = "."
8
+
9
+# 'strict = true' is equivalent to the following:
10
+check_untyped_defs = true
11
disallow_incomplete_defs = true
12
+disallow_subclassing_any = true
13
+disallow_untyped_decorators = true
14
disallow_untyped_defs = true
-files = "."
15
+warn_unused_configs = true
16
+warn_unused_ignores = true
17
18
+# The following need to have changes made to be able to enable them:
19
+# disallow_any_generics = true
20
+# disallow_untyped_calls = true
21
+# no_implicit_optional = true
22
+# no_implicit_reexport = true
23
+# strict_equality = true
24
+# warn_redundant_casts = true
25
+# warn_return_any = true
26
27
[[tool.mypy.overrides]] # Overrides for currently untyped modules
28
module = [
0 commit comments