mypy.ini 8.2 KB

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