check-patroni/mypy.ini

11 lines
433 B
INI
Raw Normal View History

2021-08-11 19:09:14 +02:00
[mypy]
# no stubs for nagiosplugin => ignore: found module but no type hints or library stubs [import]
ignore_missing_imports = true
# no subs for nagiosplugin => ignore: Class cannot subclass "Summary" (has type "Any") [misc]
disallow_subclassing_any = false
# no stubs for nagiosplugin => ignore: Untyped decorator makes function "main" untyped [misc]
disallow_untyped_decorators = false
2021-08-11 19:09:14 +02:00
show_error_codes = true
strict = true