diff options
author | David Robertson <davidr@element.io> | 2022-05-22 16:15:28 +0100 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-05-22 16:15:54 +0100 |
commit | e2d90725439eaab50ad21fd933008ebbe2482c94 (patch) | |
tree | 93f82adb7a52a092a7183f2278d58c2c9efc05d7 | |
parent | ensure idp_id gets a prefix (diff) | |
download | synapse-e2d90725439eaab50ad21fd933008ebbe2482c94.tar.xz |
Use pydantic plugin first
Some hooks are completely overrideen by mypy_zope, without the chance to yield to other plugins
-rw-r--r-- | mypy.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mypy.ini b/mypy.ini index 664be4e60d..9d2fdda792 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,6 +1,6 @@ [mypy] namespace_packages = True -plugins = mypy_zope:plugin, pydantic.mypy, scripts-dev/mypy_synapse_plugin.py +plugins = pydantic.mypy, mypy_zope:plugin, scripts-dev/mypy_synapse_plugin.py follow_imports = normal check_untyped_defs = True show_error_codes = True |