From 212af78032f09d5fafd89d93955c99431e547e2b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 27 Oct 2021 14:00:38 +0530 Subject: [PATCH] Turn on strict checks for mypy --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 17d549162..d1b23cf7a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,6 +28,7 @@ disallow_untyped_defs = True disallow_untyped_decorators = True disallow_untyped_calls = True disallow_incomplete_defs = True +strict = True no_implicit_reexport = True [mypy-conf]