Files
Dorod-Sky/mypy.ini
2025-12-19 13:37:03 -07:00

21 lines
467 B
INI

[mypy]
namespace_packages = True
follow_imports = skip
check_untyped_defs = True
disallow_untyped_defs = True
exclude = ^(venv|venv-dev)
ignore_missing_imports = True
[mypy-skyvern.library.*]
ignore_missing_imports = False
follow_imports = normal
disable_error_code = arg-type, override, return-value, valid-type, no-any-return
; Disabling for generated code
[mypy-skyvern.client.*]
follow_imports = normal
ignore_errors = True
[mypy-numpy.*]
ignore_errors = True