diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-26 10:50:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 10:50:21 -0500 |
commit | 1baab2035265cf2543fe3c0ef5412c1ac0740c7e (patch) | |
tree | cb1b9911d3ad794be081378031cfcdc72939f73f /mypy.ini | |
parent | Do not require the CAS service URL setting (use public_baseurl instead). (#9199) (diff) | |
download | synapse-1baab2035265cf2543fe3c0ef5412c1ac0740c7e.tar.xz |
Add type hints to various handlers. (#9223)
With this change all handlers except the e2e_* ones have type hints enabled.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini index bd99069c81..f3700d323c 100644 --- a/mypy.ini +++ b/mypy.ini @@ -26,6 +26,8 @@ files = synapse/handlers/_base.py, synapse/handlers/account_data.py, synapse/handlers/account_validity.py, + synapse/handlers/acme.py, + synapse/handlers/acme_issuing_service.py, synapse/handlers/admin.py, synapse/handlers/appservice.py, synapse/handlers/auth.py, @@ -36,6 +38,7 @@ files = synapse/handlers/directory.py, synapse/handlers/events.py, synapse/handlers/federation.py, + synapse/handlers/groups_local.py, synapse/handlers/identity.py, synapse/handlers/initial_sync.py, synapse/handlers/message.py, @@ -52,8 +55,13 @@ files = synapse/handlers/room_member.py, synapse/handlers/room_member_worker.py, synapse/handlers/saml_handler.py, + synapse/handlers/search.py, + synapse/handlers/set_password.py, synapse/handlers/sso.py, + synapse/handlers/state_deltas.py, + synapse/handlers/stats.py, synapse/handlers/sync.py, + synapse/handlers/typing.py, synapse/handlers/user_directory.py, synapse/handlers/ui_auth, synapse/http/client.py, @@ -194,3 +202,9 @@ ignore_missing_imports = True [mypy-hiredis] ignore_missing_imports = True + +[mypy-josepy.*] +ignore_missing_imports = True + +[mypy-txacme.*] +ignore_missing_imports = True |