1 files changed, 6 insertions, 5 deletions
diff --git a/mypy.ini b/mypy.ini
index ea0ab003a8..64f9097206 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -1,6 +1,6 @@
[mypy]
namespace_packages = True
-plugins = mypy_zope:plugin, scripts-dev/mypy_synapse_plugin.py
+plugins = pydantic.mypy, mypy_zope:plugin, scripts-dev/mypy_synapse_plugin.py
follow_imports = normal
check_untyped_defs = True
show_error_codes = True
@@ -16,7 +16,8 @@ files =
docker/,
scripts-dev/,
synapse/,
- tests/
+ tests/,
+ build_rust.py
# Note: Better exclusion syntax coming in mypy > 0.910
# https://github.com/python/mypy/pull/11329
@@ -84,9 +85,6 @@ disallow_untyped_defs = False
[mypy-synapse.http.matrixfederationclient]
disallow_untyped_defs = False
-[mypy-synapse.logging.opentracing]
-disallow_untyped_defs = False
-
[mypy-synapse.metrics._reactor_metrics]
disallow_untyped_defs = False
# This module imports select.epoll. That exists on Linux, but doesn't on macOS.
@@ -184,3 +182,6 @@ ignore_missing_imports = True
[mypy-incremental.*]
ignore_missing_imports = True
+
+[mypy-setuptools_rust.*]
+ignore_missing_imports = True
|