mypy.ini 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. [mypy]
  2. namespace_packages = True
  3. plugins = mypy_zope:plugin, scripts-dev/mypy_synapse_plugin.py
  4. follow_imports = normal
  5. check_untyped_defs = True
  6. show_error_codes = True
  7. show_traceback = True
  8. mypy_path = stubs
  9. warn_unreachable = True
  10. warn_unused_ignores = True
  11. local_partial_types = True
  12. no_implicit_optional = True
  13. disallow_untyped_defs = True
  14. files =
  15. docker/,
  16. scripts-dev/,
  17. synapse/,
  18. tests/
  19. # Note: Better exclusion syntax coming in mypy > 0.910
  20. # https://github.com/python/mypy/pull/11329
  21. #
  22. # For now, set the (?x) flag enable "verbose" regexes
  23. # https://docs.python.org/3/library/re.html#re.X
  24. exclude = (?x)
  25. ^(
  26. |synapse/storage/databases/__init__.py
  27. |synapse/storage/databases/main/cache.py
  28. |synapse/storage/databases/main/devices.py
  29. |synapse/storage/schema/
  30. |tests/api/test_auth.py
  31. |tests/api/test_ratelimiting.py
  32. |tests/app/test_openid_listener.py
  33. |tests/appservice/test_scheduler.py
  34. |tests/config/test_cache.py
  35. |tests/config/test_tls.py
  36. |tests/crypto/test_keyring.py
  37. |tests/events/test_presence_router.py
  38. |tests/events/test_utils.py
  39. |tests/federation/test_federation_catch_up.py
  40. |tests/federation/test_federation_sender.py
  41. |tests/federation/transport/test_knocking.py
  42. |tests/handlers/test_typing.py
  43. |tests/http/federation/test_matrix_federation_agent.py
  44. |tests/http/federation/test_srv_resolver.py
  45. |tests/http/test_proxyagent.py
  46. |tests/logging/__init__.py
  47. |tests/logging/test_terse_json.py
  48. |tests/module_api/test_api.py
  49. |tests/push/test_email.py
  50. |tests/push/test_presentable_names.py
  51. |tests/push/test_push_rule_evaluator.py
  52. |tests/rest/client/test_transactions.py
  53. |tests/rest/media/v1/test_media_storage.py
  54. |tests/server.py
  55. |tests/server_notices/test_resource_limits_server_notices.py
  56. |tests/test_metrics.py
  57. |tests/test_server.py
  58. |tests/test_state.py
  59. |tests/test_terms_auth.py
  60. |tests/util/caches/test_cached_call.py
  61. |tests/util/caches/test_deferred_cache.py
  62. |tests/util/caches/test_descriptors.py
  63. |tests/util/caches/test_response_cache.py
  64. |tests/util/caches/test_ttlcache.py
  65. |tests/util/test_async_helpers.py
  66. |tests/util/test_batching_queue.py
  67. |tests/util/test_dict_cache.py
  68. |tests/util/test_expiring_cache.py
  69. |tests/util/test_file_consumer.py
  70. |tests/util/test_linearizer.py
  71. |tests/util/test_logcontext.py
  72. |tests/util/test_lrucache.py
  73. )$
  74. [mypy-synapse.federation.transport.client]
  75. disallow_untyped_defs = False
  76. [mypy-synapse.http.client]
  77. disallow_untyped_defs = False
  78. [mypy-synapse.http.matrixfederationclient]
  79. disallow_untyped_defs = False
  80. [mypy-synapse.logging.opentracing]
  81. disallow_untyped_defs = False
  82. [mypy-synapse.logging.scopecontextmanager]
  83. disallow_untyped_defs = False
  84. [mypy-synapse.metrics._reactor_metrics]
  85. disallow_untyped_defs = False
  86. # This module imports select.epoll. That exists on Linux, but doesn't on macOS.
  87. # See https://github.com/matrix-org/synapse/pull/11771.
  88. warn_unused_ignores = False
  89. [mypy-synapse.util.caches.treecache]
  90. disallow_untyped_defs = False
  91. [mypy-synapse.server]
  92. disallow_untyped_defs = False
  93. [mypy-synapse.storage.database]
  94. disallow_untyped_defs = False
  95. [mypy-tests.*]
  96. disallow_untyped_defs = False
  97. [mypy-tests.handlers.test_user_directory]
  98. disallow_untyped_defs = True
  99. [mypy-tests.state.test_profile]
  100. disallow_untyped_defs = True
  101. [mypy-tests.storage.test_profile]
  102. disallow_untyped_defs = True
  103. [mypy-tests.storage.test_user_directory]
  104. disallow_untyped_defs = True
  105. [mypy-tests.rest.*]
  106. disallow_untyped_defs = True
  107. [mypy-tests.federation.transport.test_client]
  108. disallow_untyped_defs = True
  109. [mypy-tests.util.*]
  110. disallow_untyped_defs = True
  111. [mypy-tests.utils]
  112. disallow_untyped_defs = True
  113. ;; Dependencies without annotations
  114. ;; Before ignoring a module, check to see if type stubs are available.
  115. ;; The `typeshed` project maintains stubs here:
  116. ;; https://github.com/python/typeshed/tree/master/stubs
  117. ;; and for each package `foo` there's a corresponding `types-foo` package on PyPI,
  118. ;; which we can pull in as a dev dependency by adding to `pyproject.toml`'s
  119. ;; `[tool.poetry.dev-dependencies]` list.
  120. [mypy-authlib.*]
  121. ignore_missing_imports = True
  122. [mypy-canonicaljson]
  123. ignore_missing_imports = True
  124. [mypy-ijson.*]
  125. ignore_missing_imports = True
  126. [mypy-lxml]
  127. ignore_missing_imports = True
  128. [mypy-msgpack]
  129. ignore_missing_imports = True
  130. # Note: WIP stubs available at
  131. # https://github.com/microsoft/python-type-stubs/tree/64934207f523ad6b611e6cfe039d85d7175d7d0d/netaddr
  132. [mypy-netaddr]
  133. ignore_missing_imports = True
  134. [mypy-parameterized.*]
  135. ignore_missing_imports = True
  136. [mypy-pymacaroons.*]
  137. ignore_missing_imports = True
  138. [mypy-pympler.*]
  139. ignore_missing_imports = True
  140. [mypy-rust_python_jaeger_reporter.*]
  141. ignore_missing_imports = True
  142. [mypy-saml2.*]
  143. ignore_missing_imports = True
  144. [mypy-service_identity.*]
  145. ignore_missing_imports = True
  146. [mypy-srvlookup.*]
  147. ignore_missing_imports = True
  148. [mypy-treq.*]
  149. ignore_missing_imports = True
  150. [mypy-incremental.*]
  151. ignore_missing_imports = True