mypy.ini 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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. local_partial_types = True
  11. no_implicit_optional = True
  12. # To find all folders that pass mypy you run:
  13. #
  14. # find synapse/* -type d -not -name __pycache__ -exec bash -c "mypy '{}' > /dev/null" \; -print
  15. files =
  16. scripts-dev/sign_json,
  17. synapse/api,
  18. synapse/appservice,
  19. synapse/config,
  20. synapse/crypto,
  21. synapse/event_auth.py,
  22. synapse/events/builder.py,
  23. synapse/events/spamcheck.py,
  24. synapse/events/third_party_rules.py,
  25. synapse/events/validator.py,
  26. synapse/federation,
  27. synapse/groups,
  28. synapse/handlers,
  29. synapse/http/additional_resource.py,
  30. synapse/http/client.py,
  31. synapse/http/federation/matrix_federation_agent.py,
  32. synapse/http/federation/srv_resolver.py,
  33. synapse/http/federation/well_known_resolver.py,
  34. synapse/http/matrixfederationclient.py,
  35. synapse/http/proxyagent.py,
  36. synapse/http/servlet.py,
  37. synapse/http/server.py,
  38. synapse/http/site.py,
  39. synapse/logging,
  40. synapse/metrics,
  41. synapse/module_api,
  42. synapse/notifier.py,
  43. synapse/push,
  44. synapse/replication,
  45. synapse/rest,
  46. synapse/server.py,
  47. synapse/server_notices,
  48. synapse/spam_checker_api,
  49. synapse/state,
  50. synapse/storage/__init__.py,
  51. synapse/storage/_base.py,
  52. synapse/storage/background_updates.py,
  53. synapse/storage/databases/main/appservice.py,
  54. synapse/storage/databases/main/events.py,
  55. synapse/storage/databases/main/keys.py,
  56. synapse/storage/databases/main/pusher.py,
  57. synapse/storage/databases/main/registration.py,
  58. synapse/storage/databases/main/session.py,
  59. synapse/storage/databases/main/stream.py,
  60. synapse/storage/databases/main/ui_auth.py,
  61. synapse/storage/databases/state,
  62. synapse/storage/database.py,
  63. synapse/storage/engines,
  64. synapse/storage/keys.py,
  65. synapse/storage/persist_events.py,
  66. synapse/storage/prepare_database.py,
  67. synapse/storage/purge_events.py,
  68. synapse/storage/push_rule.py,
  69. synapse/storage/relations.py,
  70. synapse/storage/roommember.py,
  71. synapse/storage/state.py,
  72. synapse/storage/types.py,
  73. synapse/storage/util,
  74. synapse/streams,
  75. synapse/types.py,
  76. synapse/util,
  77. synapse/visibility.py,
  78. tests/replication,
  79. tests/test_event_auth.py,
  80. tests/test_utils,
  81. tests/handlers/test_password_providers.py,
  82. tests/handlers/test_room.py,
  83. tests/handlers/test_room_summary.py,
  84. tests/handlers/test_send_email.py,
  85. tests/handlers/test_sync.py,
  86. tests/handlers/test_user_directory.py,
  87. tests/rest/client/test_login.py,
  88. tests/rest/client/test_auth.py,
  89. tests/storage/test_state.py,
  90. tests/storage/test_user_directory.py,
  91. tests/util/test_itertools.py,
  92. tests/util/test_stream_change_cache.py
  93. [mypy-synapse.handlers.*]
  94. disallow_untyped_defs = True
  95. [mypy-synapse.push.*]
  96. disallow_untyped_defs = True
  97. [mypy-synapse.rest.*]
  98. disallow_untyped_defs = True
  99. [mypy-synapse.server_notices.*]
  100. disallow_untyped_defs = True
  101. [mypy-synapse.state.*]
  102. disallow_untyped_defs = True
  103. [mypy-synapse.storage.util.*]
  104. disallow_untyped_defs = True
  105. [mypy-synapse.streams.*]
  106. disallow_untyped_defs = True
  107. [mypy-synapse.util.batching_queue]
  108. disallow_untyped_defs = True
  109. [mypy-synapse.util.caches.cached_call]
  110. disallow_untyped_defs = True
  111. [mypy-synapse.util.caches.dictionary_cache]
  112. disallow_untyped_defs = True
  113. [mypy-synapse.util.caches.lrucache]
  114. disallow_untyped_defs = True
  115. [mypy-synapse.util.caches.response_cache]
  116. disallow_untyped_defs = True
  117. [mypy-synapse.util.caches.stream_change_cache]
  118. disallow_untyped_defs = True
  119. [mypy-synapse.util.caches.ttl_cache]
  120. disallow_untyped_defs = True
  121. [mypy-synapse.util.daemonize]
  122. disallow_untyped_defs = True
  123. [mypy-synapse.util.file_consumer]
  124. disallow_untyped_defs = True
  125. [mypy-synapse.util.frozenutils]
  126. disallow_untyped_defs = True
  127. [mypy-synapse.util.hash]
  128. disallow_untyped_defs = True
  129. [mypy-synapse.util.httpresourcetree]
  130. disallow_untyped_defs = True
  131. [mypy-synapse.util.iterutils]
  132. disallow_untyped_defs = True
  133. [mypy-synapse.util.linked_list]
  134. disallow_untyped_defs = True
  135. [mypy-synapse.util.logcontext]
  136. disallow_untyped_defs = True
  137. [mypy-synapse.util.logformatter]
  138. disallow_untyped_defs = True
  139. [mypy-synapse.util.macaroons]
  140. disallow_untyped_defs = True
  141. [mypy-synapse.util.manhole]
  142. disallow_untyped_defs = True
  143. [mypy-synapse.util.module_loader]
  144. disallow_untyped_defs = True
  145. [mypy-synapse.util.msisdn]
  146. disallow_untyped_defs = True
  147. [mypy-synapse.util.patch_inline_callbacks]
  148. disallow_untyped_defs = True
  149. [mypy-synapse.util.ratelimitutils]
  150. disallow_untyped_defs = True
  151. [mypy-synapse.util.retryutils]
  152. disallow_untyped_defs = True
  153. [mypy-synapse.util.rlimit]
  154. disallow_untyped_defs = True
  155. [mypy-synapse.util.stringutils]
  156. disallow_untyped_defs = True
  157. [mypy-synapse.util.templates]
  158. disallow_untyped_defs = True
  159. [mypy-synapse.util.threepids]
  160. disallow_untyped_defs = True
  161. [mypy-synapse.util.wheel_timer]
  162. disallow_untyped_defs = True
  163. [mypy-synapse.util.versionstring]
  164. disallow_untyped_defs = True
  165. [mypy-tests.handlers.test_user_directory]
  166. disallow_untyped_defs = True
  167. [mypy-tests.storage.test_user_directory]
  168. disallow_untyped_defs = True
  169. ;; Dependencies without annotations
  170. ;; Before ignoring a module, check to see if type stubs are available.
  171. ;; The `typeshed` project maintains stubs here:
  172. ;; https://github.com/python/typeshed/tree/master/stubs
  173. ;; and for each package `foo` there's a corresponding `types-foo` package on PyPI,
  174. ;; which we can pull in as a dev dependency by adding to `setup.py`'s
  175. ;; `CONDITIONAL_REQUIREMENTS["mypy"]` list.
  176. [mypy-authlib.*]
  177. ignore_missing_imports = True
  178. [mypy-bcrypt]
  179. ignore_missing_imports = True
  180. [mypy-canonicaljson]
  181. ignore_missing_imports = True
  182. [mypy-constantly]
  183. ignore_missing_imports = True
  184. [mypy-daemonize]
  185. ignore_missing_imports = True
  186. [mypy-h11]
  187. ignore_missing_imports = True
  188. [mypy-hiredis]
  189. ignore_missing_imports = True
  190. [mypy-hyperlink]
  191. ignore_missing_imports = True
  192. [mypy-ijson.*]
  193. ignore_missing_imports = True
  194. [mypy-jaeger_client.*]
  195. ignore_missing_imports = True
  196. [mypy-josepy.*]
  197. ignore_missing_imports = True
  198. [mypy-jwt.*]
  199. ignore_missing_imports = True
  200. [mypy-lxml]
  201. ignore_missing_imports = True
  202. [mypy-msgpack]
  203. ignore_missing_imports = True
  204. [mypy-nacl.*]
  205. ignore_missing_imports = True
  206. [mypy-netaddr]
  207. ignore_missing_imports = True
  208. [mypy-opentracing]
  209. ignore_missing_imports = True
  210. [mypy-phonenumbers.*]
  211. ignore_missing_imports = True
  212. [mypy-prometheus_client.*]
  213. ignore_missing_imports = True
  214. [mypy-pymacaroons.*]
  215. ignore_missing_imports = True
  216. [mypy-pympler.*]
  217. ignore_missing_imports = True
  218. [mypy-rust_python_jaeger_reporter.*]
  219. ignore_missing_imports = True
  220. [mypy-saml2.*]
  221. ignore_missing_imports = True
  222. [mypy-sentry_sdk]
  223. ignore_missing_imports = True
  224. [mypy-service_identity.*]
  225. ignore_missing_imports = True
  226. [mypy-signedjson.*]
  227. ignore_missing_imports = True
  228. [mypy-treq.*]
  229. ignore_missing_imports = True
  230. [mypy-twisted.*]
  231. ignore_missing_imports = True
  232. [mypy-zope]
  233. ignore_missing_imports = True