mirror of
https://github.com/home-assistant/core.git
synced 2026-07-04 23:51:32 +02:00
140a874917
* Add typing to homeassistant/*.py and homeassistant/util/ * Fix wrong merge * Restore iterable in OrderedSet * Fix tests
20 lines
397 B
INI
20 lines
397 B
INI
[mypy]
|
|
check_untyped_defs = true
|
|
follow_imports = silent
|
|
ignore_missing_imports = true
|
|
warn_incomplete_stub = true
|
|
warn_redundant_casts = true
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
warn_unused_ignores = true
|
|
|
|
[mypy-homeassistant.*]
|
|
disallow_untyped_defs = true
|
|
|
|
[mypy-homeassistant.config_entries]
|
|
disallow_untyped_defs = false
|
|
|
|
[mypy-homeassistant.util.yaml]
|
|
warn_return_any = false
|
|
|