Add Mealie to strict typing (#133644)

This commit is contained in:
Joost Lekkerkerker
2024-12-20 15:17:08 +01:00
committed by GitHub
parent 83fdc07df0
commit cbb4c06195
3 changed files with 12 additions and 1 deletions

View File

@ -311,6 +311,7 @@ homeassistant.components.manual.*
homeassistant.components.mastodon.*
homeassistant.components.matrix.*
homeassistant.components.matter.*
homeassistant.components.mealie.*
homeassistant.components.media_extractor.*
homeassistant.components.media_player.*
homeassistant.components.media_source.*

View File

@ -76,4 +76,4 @@ rules:
# Platinum
async-dependency: done
inject-websession: done
strict-typing: todo
strict-typing: done

View File

@ -2866,6 +2866,16 @@ disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.mealie.*]
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.media_extractor.*]
check_untyped_defs = true
disallow_incomplete_defs = true