googlecloudplatform--generative-ai
19 行
434 B
INI
19 行
434 B
INI
[mypy]
|
|
|
|
disallow_untyped_calls = True
|
|
disallow_untyped_defs = True
|
|
disallow_incomplete_defs = True
|
|
no_implicit_optional = True
|
|
check_untyped_defs = True
|
|
disallow_subclassing_any = True
|
|
warn_incomplete_stub = True
|
|
warn_redundant_casts = True
|
|
warn_unused_ignores = True
|
|
warn_unreachable = True
|
|
|
|
follow_imports = skip
|
|
ignore_missing_imports = True
|
|
|
|
explicit_package_bases = True
|
|
disable_error_code = misc, no-untyped-call, no-any-return
|