1 files changed, 79 insertions, 35 deletions
diff --git a/mypy.ini b/mypy.ini
index 437d0a46a5..a7019e2bd4 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -96,15 +96,48 @@ files =
[mypy-synapse.handlers.*]
disallow_untyped_defs = True
+[mypy-synapse.push.*]
+disallow_untyped_defs = True
+
[mypy-synapse.rest.*]
disallow_untyped_defs = True
+[mypy-synapse.server_notices.*]
+disallow_untyped_defs = True
+
+[mypy-synapse.state.*]
+disallow_untyped_defs = True
+
+[mypy-synapse.storage.util.*]
+disallow_untyped_defs = True
+
+[mypy-synapse.streams.*]
+disallow_untyped_defs = True
+
[mypy-synapse.util.batching_queue]
disallow_untyped_defs = True
+[mypy-synapse.util.caches.cached_call]
+disallow_untyped_defs = True
+
[mypy-synapse.util.caches.dictionary_cache]
disallow_untyped_defs = True
+[mypy-synapse.util.caches.lrucache]
+disallow_untyped_defs = True
+
+[mypy-synapse.util.caches.response_cache]
+disallow_untyped_defs = True
+
+[mypy-synapse.util.caches.stream_change_cache]
+disallow_untyped_defs = True
+
+[mypy-synapse.util.caches.ttl_cache]
+disallow_untyped_defs = True
+
+[mypy-synapse.util.daemonize]
+disallow_untyped_defs = True
+
[mypy-synapse.util.file_consumer]
disallow_untyped_defs = True
@@ -141,6 +174,9 @@ disallow_untyped_defs = True
[mypy-synapse.util.msisdn]
disallow_untyped_defs = True
+[mypy-synapse.util.patch_inline_callbacks]
+disallow_untyped_defs = True
+
[mypy-synapse.util.ratelimitutils]
disallow_untyped_defs = True
@@ -162,98 +198,106 @@ disallow_untyped_defs = True
[mypy-synapse.util.wheel_timer]
disallow_untyped_defs = True
-[mypy-pymacaroons.*]
-ignore_missing_imports = True
+[mypy-synapse.util.versionstring]
+disallow_untyped_defs = True
-[mypy-zope]
-ignore_missing_imports = True
+[mypy-tests.handlers.test_user_directory]
+disallow_untyped_defs = True
-[mypy-bcrypt]
-ignore_missing_imports = True
+[mypy-tests.storage.test_user_directory]
+disallow_untyped_defs = True
-[mypy-constantly]
-ignore_missing_imports = True
+;; Dependencies without annotations
+;; Before ignoring a module, check to see if type stubs are available.
+;; The `typeshed` project maintains stubs here:
+;; https://github.com/python/typeshed/tree/master/stubs
+;; and for each package `foo` there's a corresponding `types-foo` package on PyPI,
+;; which we can pull in as a dev dependency by adding to `setup.py`'s
+;; `CONDITIONAL_REQUIREMENTS["mypy"]` list.
-[mypy-twisted.*]
+[mypy-authlib.*]
ignore_missing_imports = True
-[mypy-treq.*]
+[mypy-bcrypt]
ignore_missing_imports = True
-[mypy-hyperlink]
+[mypy-canonicaljson]
ignore_missing_imports = True
-[mypy-h11]
+[mypy-constantly]
ignore_missing_imports = True
-[mypy-msgpack]
+[mypy-daemonize]
ignore_missing_imports = True
-[mypy-opentracing]
+[mypy-h11]
ignore_missing_imports = True
-[mypy-OpenSSL.*]
+[mypy-hiredis]
ignore_missing_imports = True
-[mypy-netaddr]
+[mypy-hyperlink]
ignore_missing_imports = True
-[mypy-saml2.*]
+[mypy-ijson.*]
ignore_missing_imports = True
-[mypy-canonicaljson]
+[mypy-jaeger_client.*]
ignore_missing_imports = True
-[mypy-jaeger_client.*]
+[mypy-josepy.*]
ignore_missing_imports = True
-[mypy-jsonschema]
+[mypy-jwt.*]
ignore_missing_imports = True
-[mypy-signedjson.*]
+[mypy-lxml]
ignore_missing_imports = True
-[mypy-prometheus_client.*]
+[mypy-msgpack]
ignore_missing_imports = True
-[mypy-service_identity.*]
+[mypy-nacl.*]
ignore_missing_imports = True
-[mypy-daemonize]
+[mypy-netaddr]
ignore_missing_imports = True
-[mypy-sentry_sdk]
+[mypy-opentracing]
ignore_missing_imports = True
-[mypy-PIL.*]
+[mypy-phonenumbers.*]
ignore_missing_imports = True
-[mypy-lxml]
+[mypy-prometheus_client.*]
ignore_missing_imports = True
-[mypy-jwt.*]
+[mypy-pymacaroons.*]
ignore_missing_imports = True
-[mypy-authlib.*]
+[mypy-pympler.*]
ignore_missing_imports = True
[mypy-rust_python_jaeger_reporter.*]
ignore_missing_imports = True
-[mypy-nacl.*]
+[mypy-saml2.*]
ignore_missing_imports = True
-[mypy-hiredis]
+[mypy-sentry_sdk]
ignore_missing_imports = True
-[mypy-josepy.*]
+[mypy-service_identity.*]
ignore_missing_imports = True
-[mypy-pympler.*]
+[mypy-signedjson.*]
ignore_missing_imports = True
-[mypy-phonenumbers.*]
+[mypy-treq.*]
ignore_missing_imports = True
-[mypy-ijson.*]
+[mypy-twisted.*]
+ignore_missing_imports = True
+
+[mypy-zope]
ignore_missing_imports = True
|