From 6d7ab8c39dce654c1a3fab3642df2533718da518 Mon Sep 17 00:00:00 2001 From: pantera Date: Mon, 12 Aug 2024 14:01:09 -0700 Subject: [PATCH] Update mypy config to be more strict and properly check the entire workos package (#330) --- mypy.ini | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index 245e450f..ccc22213 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,2 +1,11 @@ [mypy] -files=./workos/**/*.py \ No newline at end of file +packages = workos +warn_return_any = True +warn_unused_configs = True +warn_unreachable = True +warn_redundant_casts = True +warn_no_return = True +warn_unused_ignores = True +implicit_reexport = False +strict_equality = True +strict = True \ No newline at end of file