diff options
author | Neil Johnson <neil@matrix.org> | 2019-10-11 09:41:10 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2019-10-11 09:41:10 +0100 |
commit | bd8974c6da290981ba26e5a613013a18fc1fa65e (patch) | |
tree | 073d4a094f12e8e3e849bb13e68cbd1f3df960af /mypy.ini | |
parent | switch config to a bool and write tests (diff) | |
parent | Fix MAU reaping where reserved users are specified. (#6168) (diff) | |
download | synapse-bd8974c6da290981ba26e5a613013a18fc1fa65e.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into neilj/disable-mau-alerting-for-small-instances
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/mypy.ini b/mypy.ini index 8788574ee3..ffadaddc0b 100644 --- a/mypy.ini +++ b/mypy.ini @@ -4,10 +4,6 @@ plugins=mypy_zope:plugin follow_imports=skip mypy_path=stubs -[mypy-synapse.config.homeserver] -# this is a mess because of the metaclass shenanigans -ignore_errors = True - [mypy-zope] ignore_missing_imports = True @@ -52,3 +48,15 @@ ignore_missing_imports = True [mypy-signedjson.*] ignore_missing_imports = True + +[mypy-prometheus_client.*] +ignore_missing_imports = True + +[mypy-service_identity.*] +ignore_missing_imports = True + +[mypy-daemonize] +ignore_missing_imports = True + +[mypy-sentry_sdk] +ignore_missing_imports = True |