2019-09-12 19:29:55 +03:00
|
|
|
[mypy]
|
2019-10-31 18:43:24 +03:00
|
|
|
namespace_packages = True
|
2020-09-03 17:38:32 +03:00
|
|
|
plugins = mypy_zope:plugin, scripts-dev/mypy_synapse_plugin.py
|
2021-03-26 19:49:46 +03:00
|
|
|
follow_imports = normal
|
2019-10-31 18:43:24 +03:00
|
|
|
check_untyped_defs = True
|
|
|
|
show_error_codes = True
|
|
|
|
show_traceback = True
|
|
|
|
mypy_path = stubs
|
2020-10-01 15:09:18 +03:00
|
|
|
warn_unreachable = True
|
2021-03-26 19:49:46 +03:00
|
|
|
local_partial_types = True
|
2021-04-05 16:10:18 +03:00
|
|
|
no_implicit_optional = True
|
2020-12-18 01:58:00 +03:00
|
|
|
|
|
|
|
# To find all folders that pass mypy you run:
|
|
|
|
#
|
|
|
|
# find synapse/* -type d -not -name __pycache__ -exec bash -c "mypy '{}' > /dev/null" \; -print
|
|
|
|
|
2020-08-26 16:59:37 +03:00
|
|
|
files =
|
2020-11-24 15:53:00 +03:00
|
|
|
scripts-dev/sign_json,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/api,
|
|
|
|
synapse/appservice,
|
|
|
|
synapse/config,
|
2021-01-04 18:04:50 +03:00
|
|
|
synapse/crypto,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/event_auth.py,
|
|
|
|
synapse/events/builder.py,
|
|
|
|
synapse/events/spamcheck.py,
|
2021-03-24 13:49:01 +03:00
|
|
|
synapse/events/third_party_rules.py,
|
|
|
|
synapse/events/validator.py,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/federation,
|
2021-02-17 16:41:47 +03:00
|
|
|
synapse/groups,
|
2021-01-28 16:34:19 +03:00
|
|
|
synapse/handlers,
|
2020-11-25 21:30:47 +03:00
|
|
|
synapse/http/client.py,
|
2020-11-25 15:07:21 +03:00
|
|
|
synapse/http/federation/matrix_federation_agent.py,
|
2020-09-01 16:15:22 +03:00
|
|
|
synapse/http/federation/well_known_resolver.py,
|
2020-11-25 15:07:21 +03:00
|
|
|
synapse/http/matrixfederationclient.py,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/http/server.py,
|
|
|
|
synapse/http/site.py,
|
2020-09-08 23:50:51 +03:00
|
|
|
synapse/logging,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/metrics,
|
|
|
|
synapse/module_api,
|
|
|
|
synapse/notifier.py,
|
2020-12-11 19:43:53 +03:00
|
|
|
synapse/push,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/replication,
|
|
|
|
synapse/rest,
|
|
|
|
synapse/server.py,
|
|
|
|
synapse/server_notices,
|
|
|
|
synapse/spam_checker_api,
|
|
|
|
synapse/state,
|
2020-12-30 16:09:53 +03:00
|
|
|
synapse/storage/__init__.py,
|
|
|
|
synapse/storage/_base.py,
|
|
|
|
synapse/storage/background_updates.py,
|
2020-10-28 18:12:21 +03:00
|
|
|
synapse/storage/databases/main/appservice.py,
|
2020-09-11 14:22:55 +03:00
|
|
|
synapse/storage/databases/main/events.py,
|
2021-01-04 18:04:50 +03:00
|
|
|
synapse/storage/databases/main/keys.py,
|
2020-12-16 19:25:30 +03:00
|
|
|
synapse/storage/databases/main/pusher.py,
|
2020-10-22 13:56:58 +03:00
|
|
|
synapse/storage/databases/main/registration.py,
|
2020-09-02 19:52:38 +03:00
|
|
|
synapse/storage/databases/main/stream.py,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/storage/databases/main/ui_auth.py,
|
|
|
|
synapse/storage/database.py,
|
|
|
|
synapse/storage/engines,
|
2020-12-30 16:09:53 +03:00
|
|
|
synapse/storage/keys.py,
|
2020-09-11 14:22:55 +03:00
|
|
|
synapse/storage/persist_events.py,
|
2020-12-30 16:09:53 +03:00
|
|
|
synapse/storage/prepare_database.py,
|
|
|
|
synapse/storage/purge_events.py,
|
|
|
|
synapse/storage/push_rule.py,
|
|
|
|
synapse/storage/relations.py,
|
|
|
|
synapse/storage/roommember.py,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/storage/state.py,
|
2020-12-30 16:09:53 +03:00
|
|
|
synapse/storage/types.py,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/storage/util,
|
|
|
|
synapse/streams,
|
|
|
|
synapse/types.py,
|
2020-09-08 23:50:51 +03:00
|
|
|
synapse/util/async_helpers.py,
|
2020-10-15 13:44:39 +03:00
|
|
|
synapse/util/caches,
|
2020-08-26 16:59:37 +03:00
|
|
|
synapse/util/metrics.py,
|
2021-03-04 17:44:22 +03:00
|
|
|
synapse/util/macaroons.py,
|
2021-01-20 16:15:14 +03:00
|
|
|
synapse/util/stringutils.py,
|
2021-03-24 13:49:01 +03:00
|
|
|
synapse/visibility.py,
|
2020-08-26 16:59:37 +03:00
|
|
|
tests/replication,
|
|
|
|
tests/test_utils,
|
2020-12-01 14:10:42 +03:00
|
|
|
tests/handlers/test_password_providers.py,
|
2021-01-06 18:51:18 +03:00
|
|
|
tests/rest/client/v1/test_login.py,
|
2020-08-26 16:59:37 +03:00
|
|
|
tests/rest/client/v2_alpha/test_auth.py,
|
|
|
|
tests/util/test_stream_change_cache.py
|
2019-09-12 19:29:55 +03:00
|
|
|
|
2020-01-20 20:34:13 +03:00
|
|
|
[mypy-pymacaroons.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2019-09-12 19:29:55 +03:00
|
|
|
[mypy-zope]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2020-10-28 18:12:21 +03:00
|
|
|
[mypy-bcrypt]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2019-09-12 19:29:55 +03:00
|
|
|
[mypy-constantly]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-twisted.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-treq.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-hyperlink]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-h11]
|
|
|
|
ignore_missing_imports = True
|
2020-12-30 01:42:10 +03:00
|
|
|
|
|
|
|
[mypy-msgpack]
|
|
|
|
ignore_missing_imports = True
|
2019-09-12 19:29:55 +03:00
|
|
|
|
|
|
|
[mypy-opentracing]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2020-11-25 21:30:47 +03:00
|
|
|
[mypy-OpenSSL.*]
|
2019-09-12 19:29:55 +03:00
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-netaddr]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-saml2.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-canonicaljson]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-jaeger_client]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-jsonschema]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-signedjson.*]
|
|
|
|
ignore_missing_imports = True
|
2019-10-10 11:39:35 +03:00
|
|
|
|
|
|
|
[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
|
2020-01-20 20:38:21 +03:00
|
|
|
|
|
|
|
[mypy-PIL.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-lxml]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-jwt.*]
|
|
|
|
ignore_missing_imports = True
|
2020-05-08 15:30:40 +03:00
|
|
|
|
|
|
|
[mypy-authlib.*]
|
|
|
|
ignore_missing_imports = True
|
2020-06-17 16:13:41 +03:00
|
|
|
|
|
|
|
[mypy-rust_python_jaeger_reporter.*]
|
|
|
|
ignore_missing_imports = True
|
2020-08-12 17:05:50 +03:00
|
|
|
|
|
|
|
[mypy-nacl.*]
|
|
|
|
ignore_missing_imports = True
|
2020-10-02 11:57:12 +03:00
|
|
|
|
|
|
|
[mypy-hiredis]
|
|
|
|
ignore_missing_imports = True
|
2021-01-26 18:50:21 +03:00
|
|
|
|
|
|
|
[mypy-josepy.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-txacme.*]
|
|
|
|
ignore_missing_imports = True
|