diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-10-10 09:39:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 09:39:35 +0100 |
commit | f743108a94658eb1dbaf168d39874272f756a386 (patch) | |
tree | b9f745e72ae01b13adc9b273884fd31c8fe4f355 /mypy.ini | |
parent | Merge pull request #6185 from matrix-org/erikj/fix_censored_evnets (diff) | |
download | synapse-f743108a94658eb1dbaf168d39874272f756a386.tar.xz |
Refactor HomeserverConfig so it can be typechecked (#6137)
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 |