From 53ee0a87a84c1fe894cf38b5c522f8ca2acecb69 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Mon, 30 Jun 2025 11:51:45 -0400 Subject: [PATCH] refactor: :recycle: make mypy more strict in settings --- mypy.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mypy.ini b/mypy.ini index 4ed651d..f6c48ee 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,5 +1,9 @@ [mypy] python_version = 3.12 +strict = True [mypy-quartodoc.*] ignore_missing_imports = True + +[mypy-tests.*] +disallow_untyped_defs = False