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

42 lines
907 B
INI

[mypy]
python_version = 3.9
warn_return_any = False
warn_unused_configs = False
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
show_error_codes = 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
[mypy-dotenv.*]
ignore_missing_imports = True