Files
FrameTour-RenderWorker/mypy.ini
2025-09-24 11:28:48 +08:00

38 lines
834 B
INI

[mypy]
python_version = 3.9
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = False
disallow_untyped_decorators = False
no_implicit_optional = False
warn_redundant_casts = False
warn_unused_ignores = False
warn_no_return = False
warn_unreachable = False
strict_equality = False
namespace_packages = True
explicit_package_bases = True
# Exclude duplicate modules and legacy code
exclude = biz/ffmpeg\.py
# Ignore missing type annotations for third-party libraries
[mypy-requests.*]
ignore_missing_imports = True
[mypy-flask.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-psutil.*]
ignore_missing_imports = True
[mypy-opentelemetry.*]
ignore_missing_imports = True