2019-09-12 10:29:55 -06:00
|
|
|
[mypy]
|
2019-10-31 09:43:24 -06:00
|
|
|
namespace_packages = True
|
2022-08-15 13:05:57 -06:00
|
|
|
plugins = pydantic.mypy, mypy_zope:plugin, scripts-dev/mypy_synapse_plugin.py
|
2021-03-26 10:49:46 -06:00
|
|
|
follow_imports = normal
|
2019-10-31 09:43:24 -06:00
|
|
|
show_error_codes = True
|
|
|
|
show_traceback = True
|
|
|
|
mypy_path = stubs
|
2020-10-01 06:09:18 -06:00
|
|
|
warn_unreachable = True
|
2021-03-26 10:49:46 -06:00
|
|
|
local_partial_types = True
|
2021-04-05 07:10:18 -06:00
|
|
|
no_implicit_optional = True
|
2023-05-31 05:18:29 -06:00
|
|
|
|
|
|
|
# Strict checks, see mypy --help
|
|
|
|
warn_unused_configs = True
|
|
|
|
# disallow_any_generics = True
|
|
|
|
disallow_subclassing_any = True
|
|
|
|
# disallow_untyped_calls = True
|
2022-05-19 06:49:58 -06:00
|
|
|
disallow_untyped_defs = True
|
2023-05-31 05:18:29 -06:00
|
|
|
disallow_incomplete_defs = True
|
|
|
|
# check_untyped_defs = True
|
|
|
|
# disallow_untyped_decorators = True
|
2022-12-12 14:25:07 -07:00
|
|
|
warn_redundant_casts = True
|
2023-05-31 05:18:29 -06:00
|
|
|
warn_unused_ignores = True
|
|
|
|
# warn_return_any = True
|
|
|
|
# no_implicit_reexport = True
|
|
|
|
strict_equality = True
|
|
|
|
|
2023-05-16 12:27:47 -06:00
|
|
|
# Run mypy type checking with the minimum supported Python version to catch new usage
|
|
|
|
# that isn't backwards-compatible (types, overloads, etc).
|
|
|
|
python_version = 3.8
|
2020-12-17 15:58:00 -07:00
|
|
|
|
2020-08-26 07:59:37 -06:00
|
|
|
files =
|
2022-04-08 04:10:58 -06:00
|
|
|
docker/,
|
2022-03-02 11:00:26 -07:00
|
|
|
scripts-dev/,
|
2021-11-09 09:22:47 -07:00
|
|
|
synapse/,
|
2023-10-04 11:53:04 -06:00
|
|
|
synmark/,
|
2022-09-06 12:01:37 -06:00
|
|
|
tests/,
|
|
|
|
build_rust.py
|
2021-11-09 09:22:47 -07:00
|
|
|
|
2022-04-27 07:03:44 -06:00
|
|
|
[mypy-synapse.metrics._reactor_metrics]
|
2023-11-06 06:31:22 -07:00
|
|
|
# This module pokes at the internals of OS-specific classes, to appease mypy
|
|
|
|
# on different systems we add additional ignores.
|
2022-04-27 07:03:44 -06:00
|
|
|
warn_unused_ignores = False
|
|
|
|
|
2022-05-19 06:49:58 -06:00
|
|
|
[mypy-synapse.util.caches.treecache]
|
|
|
|
disallow_untyped_defs = False
|
2023-05-31 05:18:29 -06:00
|
|
|
disallow_incomplete_defs = False
|
2021-10-08 08:25:16 -06:00
|
|
|
|
2023-08-15 10:07:13 -06:00
|
|
|
[mypy-synapse.util.manhole]
|
|
|
|
# This module imports something from Twisted which has a bad annotation in Twisted trunk,
|
|
|
|
# but is unannotated in Twisted's latest release. We want to type-ignore the problem
|
|
|
|
# in the twisted trunk job, even though it has no effect on normal mypy runs.
|
|
|
|
warn_unused_ignores = False
|
|
|
|
|
|
|
|
|
2021-10-08 07:49:41 -06:00
|
|
|
;; Dependencies without annotations
|
|
|
|
;; Before ignoring a module, check to see if type stubs are available.
|
|
|
|
;; The `typeshed` project maintains stubs here:
|
|
|
|
;; https://github.com/python/typeshed/tree/master/stubs
|
|
|
|
;; and for each package `foo` there's a corresponding `types-foo` package on PyPI,
|
2022-04-20 12:16:49 -06:00
|
|
|
;; which we can pull in as a dev dependency by adding to `pyproject.toml`'s
|
|
|
|
;; `[tool.poetry.dev-dependencies]` list.
|
2020-01-20 10:34:13 -07:00
|
|
|
|
2023-05-31 05:18:29 -06:00
|
|
|
# https://github.com/lepture/authlib/issues/460
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-authlib.*]
|
2019-09-12 10:29:55 -06:00
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-ijson.*]
|
2019-09-12 10:29:55 -06:00
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2023-05-31 05:18:29 -06:00
|
|
|
# https://github.com/msgpack/msgpack-python/issues/448
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-msgpack]
|
2019-09-12 10:29:55 -06:00
|
|
|
ignore_missing_imports = True
|
2019-10-10 02:39:35 -06:00
|
|
|
|
2023-05-31 05:18:29 -06:00
|
|
|
# https://github.com/wolever/parameterized/issues/143
|
2021-11-09 12:04:53 -07:00
|
|
|
[mypy-parameterized.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-pymacaroons.*]
|
2020-01-20 10:38:21 -07:00
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-pympler.*]
|
2020-01-20 10:38:21 -07:00
|
|
|
ignore_missing_imports = True
|
2020-05-08 06:30:40 -06:00
|
|
|
|
2023-10-04 11:53:04 -06:00
|
|
|
[mypy-pyperf.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-rust_python_jaeger_reporter.*]
|
2020-05-08 06:30:40 -06:00
|
|
|
ignore_missing_imports = True
|
2020-06-17 07:13:41 -06:00
|
|
|
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-saml2.*]
|
2020-06-17 07:13:41 -06:00
|
|
|
ignore_missing_imports = True
|
2020-08-12 08:05:50 -06:00
|
|
|
|
2022-04-27 07:10:31 -06:00
|
|
|
[mypy-srvlookup.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2023-05-31 05:18:29 -06:00
|
|
|
# https://github.com/twisted/treq/pull/366
|
2021-10-08 07:49:41 -06:00
|
|
|
[mypy-treq.*]
|
2021-05-05 09:54:36 -06:00
|
|
|
ignore_missing_imports = True
|
2024-07-02 07:07:04 -06:00
|
|
|
|
|
|
|
[mypy-multipart.*]
|
|
|
|
ignore_missing_imports = True
|