mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
22 lines
481 B
INI
22 lines
481 B
INI
[mypy]
|
|
warn_unused_configs = True
|
|
ignore_missing_imports = True
|
|
check_untyped_defs = True
|
|
explicit_package_bases = True
|
|
warn_unreachable = True
|
|
warn_redundant_casts = True
|
|
no_implicit_optional = True
|
|
strict_optional = True
|
|
disable_error_code = type-abstract
|
|
|
|
# Exclude third-party runtime directory from type checking
|
|
exclude = (enterprise/)
|
|
|
|
[mypy-openai.*]
|
|
follow_imports = skip
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-litellm.*]
|
|
follow_imports = skip
|
|
ignore_missing_imports = True
|