- setup.cfg: configure mypy to disable import-untyped errors (requests, kubernetes lack stubs) and ignore kubernetes attr errors - check_versions.py: annotate entry dict as dict[str, Any] to resolve type errors on entry["image"] and entry["latest"] in mirror loop
10 lines
155 B
INI
10 lines
155 B
INI
[mypy]
|
|
ignore_missing_imports = True
|
|
disable_error_code = import-untyped
|
|
|
|
[mypy-kubernetes]
|
|
ignore_errors = True
|
|
|
|
[mypy-kubernetes.*]
|
|
ignore_errors = True
|