2018-04-12 21:53:07 -04:00
|
|
|
[mypy]
|
2018-05-21 23:23:21 -04:00
|
|
|
ignore_missing_imports = True
|
2021-10-24 18:43:21 -04:00
|
|
|
warn_unused_ignores = True
|
|
|
|
|
show_error_codes = True
|
2022-01-31 03:17:40 -05:00
|
|
|
disallow_untyped_defs = True
|
2023-03-30 18:20:44 -04:00
|
|
|
|
|
|
|
|
# Using stricter settings here is being tracked by
|
|
|
|
|
# https://github.com/certbot/certbot/issues/9647.
|
|
|
|
|
[mypy-*._internal.tests.*]
|
|
|
|
|
# By default, mypy prints notes without erroring about any type annotations it
|
|
|
|
|
# finds in untyped function bodies when check_untyped_defs is false. Disabling
|
|
|
|
|
# this "error" code removes this visual noise.
|
|
|
|
|
disable_error_code = annotation-unchecked
|
|
|
|
|
disallow_untyped_defs = False
|