File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,14 @@ disable_error_code = ["var-annotated"]
50
50
pretty = true # Show error messages in a more readable format
51
51
show_error_codes = true # Show error codes in error messages
52
52
incremental = true # Enable incremental mode for faster checking
53
- disallow_untyped_defs = true # Disallow functions without type annotations
53
+ disallow_untyped_defs = false # Disallow functions without type annotations
54
54
disallow_untyped_calls = true # Warn about calling functions without type annotations
55
55
no_implicit_optional = true # Disallow implicit optional types
56
56
warn_return_any = true # Warn about returning Any type
57
57
cache_dir = " .mypy_cache" # Directory for cache files
58
58
ignore_missing_imports = true # Skip type checking for missing imports (useful for third-party packages)
59
59
60
+
60
61
# Relax the checks in the test
61
62
[[tool .mypy .overrides ]]
62
63
module = " test.*"
You can’t perform that action at this time.
0 commit comments