Enable strict typing for default_config (#108366)

This commit is contained in:
Marc Mueller 2024-01-19 13:34:40 +01:00 committed by GitHub
parent 15bd31e8d8
commit c6f1c4f550
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View File

@ -133,6 +133,7 @@ homeassistant.components.crownstone.*
homeassistant.components.date.*
homeassistant.components.datetime.*
homeassistant.components.deconz.*
homeassistant.components.default_config.*
homeassistant.components.demo.*
homeassistant.components.derivative.*
homeassistant.components.device_automation.*

View File

@ -1090,6 +1090,16 @@ disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.default_config.*]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.demo.*]
check_untyped_defs = true
disallow_incomplete_defs = true