From e69368ff9a64db7134a212686c08922c6537bcee Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Sun, 26 Mar 2023 11:38:22 -0400 Subject: [PATCH] update setup.cfg --- setup.cfg | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index daec0d4..db70960 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,8 @@ per-file-ignores = max-line-length = 88 ignore = - W503, # line break before binary operator + # line break before binary operator + W503, [isort] @@ -23,11 +24,16 @@ include_trailing_comma=true [mypy] -ignore_missing_imports = True show_error_codes = True -disable_error_code = import +;show_error_context = True +;pretty = True + +disallow_incomplete_defs = True +disallow_untyped_defs = True disallow_untyped_calls = True disallow_untyped_decorators = True -strict_optional = False -warn_redundant_casts = True -warn_unused_ignores = True + +;strict_optional = True +no_implicit_optional = True + +warn_return_any = True -- 2.52.0