mirror of
https://github.com/home-assistant/core.git
synced 2025-07-31 19:25:12 +02:00
Enable pydantic.v1 mypy plugin (#132907)
This commit is contained in:
@@ -33,7 +33,12 @@ HEADER: Final = """
|
||||
GENERAL_SETTINGS: Final[dict[str, str]] = {
|
||||
"python_version": ".".join(str(x) for x in REQUIRED_PYTHON_VER[:2]),
|
||||
"platform": "linux",
|
||||
"plugins": "pydantic.mypy",
|
||||
"plugins": ", ".join( # noqa: FLY002
|
||||
[
|
||||
"pydantic.mypy",
|
||||
"pydantic.v1.mypy",
|
||||
]
|
||||
),
|
||||
"show_error_codes": "true",
|
||||
"follow_imports": "normal",
|
||||
# "enable_incomplete_feature": ", ".join( # noqa: FLY002
|
||||
|
Reference in New Issue
Block a user