2024-03-01 10:09:30 -08:00
|
|
|
[mypy]
|
|
|
|
|
namespace_packages = True
|
|
|
|
|
follow_imports = skip
|
|
|
|
|
check_untyped_defs = True
|
|
|
|
|
disallow_untyped_defs = True
|
|
|
|
|
exclude = ^(venv|venv-dev)
|
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
2025-12-19 13:37:03 -07:00
|
|
|
[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
|
|
|
|
|
|
2024-03-01 10:09:30 -08:00
|
|
|
[mypy-numpy.*]
|
|
|
|
|
ignore_errors = True
|