mypy.ini 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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. files =
  13. scripts-dev/,
  14. setup.py,
  15. synapse/,
  16. tests/
  17. # Note: Better exclusion syntax coming in mypy > 0.910
  18. # https://github.com/python/mypy/pull/11329
  19. #
  20. # For now, set the (?x) flag enable "verbose" regexes
  21. # https://docs.python.org/3/library/re.html#re.X
  22. exclude = (?x)
  23. ^(
  24. |scripts-dev/build_debian_packages.py
  25. |scripts-dev/check_signature.py
  26. |scripts-dev/definitions.py
  27. |scripts-dev/federation_client.py
  28. |scripts-dev/hash_history.py
  29. |scripts-dev/list_url_patterns.py
  30. |scripts-dev/release.py
  31. |scripts-dev/tail-synapse.py
  32. |synapse/_scripts/export_signing_key.py
  33. |synapse/_scripts/move_remote_media_to_new_store.py
  34. |synapse/_scripts/synapse_port_db.py
  35. |synapse/_scripts/update_synapse_database.py
  36. |synapse/storage/databases/__init__.py
  37. |synapse/storage/databases/main/__init__.py
  38. |synapse/storage/databases/main/cache.py
  39. |synapse/storage/databases/main/devices.py
  40. |synapse/storage/databases/main/event_federation.py
  41. |synapse/storage/databases/main/group_server.py
  42. |synapse/storage/databases/main/metrics.py
  43. |synapse/storage/databases/main/monthly_active_users.py
  44. |synapse/storage/databases/main/push_rule.py
  45. |synapse/storage/databases/main/receipts.py
  46. |synapse/storage/databases/main/roommember.py
  47. |synapse/storage/databases/main/search.py
  48. |synapse/storage/databases/main/state.py
  49. |synapse/storage/schema/
  50. |tests/api/test_auth.py
  51. |tests/api/test_ratelimiting.py
  52. |tests/app/test_openid_listener.py
  53. |tests/appservice/test_scheduler.py
  54. |tests/config/test_cache.py
  55. |tests/config/test_tls.py
  56. |tests/crypto/test_keyring.py
  57. |tests/events/test_presence_router.py
  58. |tests/events/test_utils.py
  59. |tests/federation/test_federation_catch_up.py
  60. |tests/federation/test_federation_sender.py
  61. |tests/federation/test_federation_server.py
  62. |tests/federation/transport/test_knocking.py
  63. |tests/federation/transport/test_server.py
  64. |tests/handlers/test_cas.py
  65. |tests/handlers/test_directory.py
  66. |tests/handlers/test_e2e_keys.py
  67. |tests/handlers/test_federation.py
  68. |tests/handlers/test_oidc.py
  69. |tests/handlers/test_presence.py
  70. |tests/handlers/test_profile.py
  71. |tests/handlers/test_saml.py
  72. |tests/handlers/test_typing.py
  73. |tests/http/federation/test_matrix_federation_agent.py
  74. |tests/http/federation/test_srv_resolver.py
  75. |tests/http/test_fedclient.py
  76. |tests/http/test_proxyagent.py
  77. |tests/http/test_servlet.py
  78. |tests/http/test_site.py
  79. |tests/logging/__init__.py
  80. |tests/logging/test_terse_json.py
  81. |tests/module_api/test_api.py
  82. |tests/push/test_email.py
  83. |tests/push/test_http.py
  84. |tests/push/test_presentable_names.py
  85. |tests/push/test_push_rule_evaluator.py
  86. |tests/rest/client/test_transactions.py
  87. |tests/rest/media/v1/test_media_storage.py
  88. |tests/scripts/test_new_matrix_user.py
  89. |tests/server.py
  90. |tests/server_notices/test_resource_limits_server_notices.py
  91. |tests/state/test_v2.py
  92. |tests/storage/test_background_update.py
  93. |tests/storage/test_base.py
  94. |tests/storage/test_client_ips.py
  95. |tests/storage/test_database.py
  96. |tests/storage/test_event_federation.py
  97. |tests/storage/test_id_generators.py
  98. |tests/storage/test_roommember.py
  99. |tests/test_metrics.py
  100. |tests/test_phone_home.py
  101. |tests/test_server.py
  102. |tests/test_state.py
  103. |tests/test_terms_auth.py
  104. |tests/unittest.py
  105. |tests/util/caches/test_cached_call.py
  106. |tests/util/caches/test_deferred_cache.py
  107. |tests/util/caches/test_descriptors.py
  108. |tests/util/caches/test_response_cache.py
  109. |tests/util/caches/test_ttlcache.py
  110. |tests/util/test_async_helpers.py
  111. |tests/util/test_batching_queue.py
  112. |tests/util/test_dict_cache.py
  113. |tests/util/test_expiring_cache.py
  114. |tests/util/test_file_consumer.py
  115. |tests/util/test_linearizer.py
  116. |tests/util/test_logcontext.py
  117. |tests/util/test_lrucache.py
  118. |tests/util/test_rwlock.py
  119. |tests/util/test_wheel_timer.py
  120. |tests/utils.py
  121. )$
  122. [mypy-synapse.api.*]
  123. disallow_untyped_defs = True
  124. [mypy-synapse.app.*]
  125. disallow_untyped_defs = True
  126. [mypy-synapse.appservice.*]
  127. disallow_untyped_defs = True
  128. [mypy-synapse.config._base]
  129. disallow_untyped_defs = True
  130. [mypy-synapse.crypto.*]
  131. disallow_untyped_defs = True
  132. [mypy-synapse.event_auth]
  133. disallow_untyped_defs = True
  134. [mypy-synapse.events.*]
  135. disallow_untyped_defs = True
  136. [mypy-synapse.federation.*]
  137. disallow_untyped_defs = True
  138. [mypy-synapse.federation.transport.client]
  139. disallow_untyped_defs = False
  140. [mypy-synapse.handlers.*]
  141. disallow_untyped_defs = True
  142. [mypy-synapse.http.server]
  143. disallow_untyped_defs = True
  144. [mypy-synapse.logging.context]
  145. disallow_untyped_defs = True
  146. [mypy-synapse.metrics.*]
  147. disallow_untyped_defs = True
  148. [mypy-synapse.module_api.*]
  149. disallow_untyped_defs = True
  150. [mypy-synapse.notifier]
  151. disallow_untyped_defs = True
  152. [mypy-synapse.push.*]
  153. disallow_untyped_defs = True
  154. [mypy-synapse.replication.*]
  155. disallow_untyped_defs = True
  156. [mypy-synapse.rest.*]
  157. disallow_untyped_defs = True
  158. [mypy-synapse.server_notices.*]
  159. disallow_untyped_defs = True
  160. [mypy-synapse.state.*]
  161. disallow_untyped_defs = True
  162. [mypy-synapse.storage.databases.main.account_data]
  163. disallow_untyped_defs = True
  164. [mypy-synapse.storage.databases.main.client_ips]
  165. disallow_untyped_defs = True
  166. [mypy-synapse.storage.databases.main.directory]
  167. disallow_untyped_defs = True
  168. [mypy-synapse.storage.databases.main.e2e_room_keys]
  169. disallow_untyped_defs = True
  170. [mypy-synapse.storage.databases.main.end_to_end_keys]
  171. disallow_untyped_defs = True
  172. [mypy-synapse.storage.databases.main.event_push_actions]
  173. disallow_untyped_defs = True
  174. [mypy-synapse.storage.databases.main.events_bg_updates]
  175. disallow_untyped_defs = True
  176. [mypy-synapse.storage.databases.main.events_worker]
  177. disallow_untyped_defs = True
  178. [mypy-synapse.storage.databases.main.room]
  179. disallow_untyped_defs = True
  180. [mypy-synapse.storage.databases.main.room_batch]
  181. disallow_untyped_defs = True
  182. [mypy-synapse.storage.databases.main.profile]
  183. disallow_untyped_defs = True
  184. [mypy-synapse.storage.databases.main.stats]
  185. disallow_untyped_defs = True
  186. [mypy-synapse.storage.databases.main.state_deltas]
  187. disallow_untyped_defs = True
  188. [mypy-synapse.storage.databases.main.transactions]
  189. disallow_untyped_defs = True
  190. [mypy-synapse.storage.databases.main.user_erasure_store]
  191. disallow_untyped_defs = True
  192. [mypy-synapse.storage.util.*]
  193. disallow_untyped_defs = True
  194. [mypy-synapse.streams.*]
  195. disallow_untyped_defs = True
  196. [mypy-synapse.util.*]
  197. disallow_untyped_defs = True
  198. [mypy-synapse.util.caches.treecache]
  199. disallow_untyped_defs = False
  200. [mypy-tests.handlers.test_user_directory]
  201. disallow_untyped_defs = True
  202. [mypy-tests.storage.test_profile]
  203. disallow_untyped_defs = True
  204. [mypy-tests.storage.test_user_directory]
  205. disallow_untyped_defs = True
  206. [mypy-tests.rest.*]
  207. disallow_untyped_defs = True
  208. [mypy-tests.federation.transport.test_client]
  209. disallow_untyped_defs = True
  210. ;; Dependencies without annotations
  211. ;; Before ignoring a module, check to see if type stubs are available.
  212. ;; The `typeshed` project maintains stubs here:
  213. ;; https://github.com/python/typeshed/tree/master/stubs
  214. ;; and for each package `foo` there's a corresponding `types-foo` package on PyPI,
  215. ;; which we can pull in as a dev dependency by adding to `setup.py`'s
  216. ;; `CONDITIONAL_REQUIREMENTS["mypy"]` list.
  217. [mypy-authlib.*]
  218. ignore_missing_imports = True
  219. [mypy-bcrypt]
  220. ignore_missing_imports = True
  221. [mypy-canonicaljson]
  222. ignore_missing_imports = True
  223. [mypy-constantly]
  224. ignore_missing_imports = True
  225. [mypy-daemonize]
  226. ignore_missing_imports = True
  227. [mypy-h11]
  228. ignore_missing_imports = True
  229. [mypy-hiredis]
  230. ignore_missing_imports = True
  231. [mypy-hyperlink]
  232. ignore_missing_imports = True
  233. [mypy-ijson.*]
  234. ignore_missing_imports = True
  235. [mypy-jaeger_client.*]
  236. ignore_missing_imports = True
  237. [mypy-josepy.*]
  238. ignore_missing_imports = True
  239. [mypy-jwt.*]
  240. ignore_missing_imports = True
  241. [mypy-lxml]
  242. ignore_missing_imports = True
  243. [mypy-msgpack]
  244. ignore_missing_imports = True
  245. [mypy-nacl.*]
  246. ignore_missing_imports = True
  247. [mypy-netaddr]
  248. ignore_missing_imports = True
  249. [mypy-parameterized.*]
  250. ignore_missing_imports = True
  251. [mypy-phonenumbers.*]
  252. ignore_missing_imports = True
  253. [mypy-prometheus_client.*]
  254. ignore_missing_imports = True
  255. [mypy-pymacaroons.*]
  256. ignore_missing_imports = True
  257. [mypy-pympler.*]
  258. ignore_missing_imports = True
  259. [mypy-rust_python_jaeger_reporter.*]
  260. ignore_missing_imports = True
  261. [mypy-saml2.*]
  262. ignore_missing_imports = True
  263. [mypy-sentry_sdk]
  264. ignore_missing_imports = True
  265. [mypy-service_identity.*]
  266. ignore_missing_imports = True
  267. [mypy-signedjson.*]
  268. ignore_missing_imports = True
  269. [mypy-treq.*]
  270. ignore_missing_imports = True
  271. [mypy-twisted.*]
  272. ignore_missing_imports = True
  273. [mypy-zope]
  274. ignore_missing_imports = True
  275. [mypy-incremental.*]
  276. ignore_missing_imports = True