From 632441ea539f3243f39b7b84361e2d51b86b9231 Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Thu, 16 Mar 2023 18:24:33 +0100 Subject: [PATCH] Require full annotation in mypy configuration --- mypy.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mypy.ini b/mypy.ini index 918bc71..d0264e9 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,4 +1,6 @@ [mypy] +disallow_incomplete_defs=True +disallow_untyped_defs=True implicit_reexport=False pretty=True show_error_codes=True