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.
2 parents e46ef7b + f838ac0 commit 750f9a7Copy full SHA for 750f9a7
mypy.ini
@@ -1,9 +1,21 @@
1
[mypy]
2
+check_untyped_defs = True
3
disallow_any_generics = True
4
+disallow_incomplete_defs = True
5
+disallow_subclassing_any = True
6
+disallow_untyped_calls = True
7
+disallow_untyped_decorators = True
8
disallow_untyped_defs = True
-ignore_missing_imports = True
9
no_implicit_optional = True
10
show_error_codes = True
11
+strict_equality = True
12
warn_redundant_casts = True
13
warn_return_any = True
14
+warn_unused_configs = True
15
warn_unused_ignores = True
16
+
17
+[mypy-jsonschema.*]
18
+ignore_missing_imports = True
19
20
+[mypy-setuptools.*]
21
0 commit comments