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 8b983c5 commit f062a8cCopy full SHA for f062a8c
mypy.ini
@@ -1,15 +1,20 @@
1
[mypy]
2
-python_version = 3.8
+python_version = 3.9
3
4
+ignore_missing_imports = True
5
+namespace_packages = True
6
+explicit_package_bases = True
7
+scripts_are_modules = True
8
pretty = True
9
show_error_context = True
10
follow_imports_for_stubs = True
11
+warn_redundant_casts = True
12
+warn_unused_ignores = True
13
# subset of mypy --strict
14
# https://mypy.readthedocs.io/en/stable/config_file.html
15
check_untyped_defs = True
16
disallow_incomplete_defs = True
17
warn_return_any = True
18
strict_equality = True
-
-[mypy-deprecation.*]
-ignore_missing_imports = True
19
+disallow_untyped_defs = True
20
+exclude = src/cloudevents/v1
0 commit comments