summary refs log tree commit diff
path: root/mypy.ini
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2021-10-08 15:25:16 +0100
committerGitHub <noreply@github.com>2021-10-08 14:25:16 +0000
commit51a5da74ccd383806378b53ee8a09e27a8829f31 (patch)
tree23b1f1e5aebd931ce9e3faba8e8f301d1f079595 /mypy.ini
parentRelax `ignore-missing-imports` for modules that have stubs now and update myp... (diff)
downloadsynapse-51a5da74ccd383806378b53ee8a09e27a8829f31.tar.xz
Annotate synapse.storage.util (#10892)
Also mark `synapse.streams` as having has no untyped defs

Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com>
Diffstat (limited to 'mypy.ini')
-rw-r--r--mypy.ini6
1 files changed, 6 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini
index e7cb80b6eb..bc2b59ff56 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -105,6 +105,12 @@ 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