mypy.ini 6.9 KB

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