mypy.ini 5.0 KB

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