Use strict typing for LiteJet integration (#88629)

* Strict typing for LiteJet.

* Add test for new check.

* PR feedback.

* PR feedback.
This commit is contained in:
Jon Caruana
2023-02-24 08:51:48 -08:00
committed by GitHub
parent ee7dfdae30
commit e69091c6db
6 changed files with 35 additions and 9 deletions

View File

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