mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Add hassfest URL validation to documentation link (#31143)
This commit is contained in:
parent
4311b1ae65
commit
aa390efd69
@ -2,7 +2,7 @@
|
|||||||
"domain": "soma",
|
"domain": "soma",
|
||||||
"name": "Soma Connect",
|
"name": "Soma Connect",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "",
|
"documentation": "https://www.home-assistant.io/integrations/soma",
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": ["@ratsept"],
|
"codeowners": ["@ratsept"],
|
||||||
"requirements": ["pysoma==0.0.10"]
|
"requirements": ["pysoma==0.0.10"]
|
||||||
|
@ -23,7 +23,9 @@ MANIFEST_SCHEMA = vol.Schema(
|
|||||||
vol.All([vol.All(vol.Schema({}, extra=vol.ALLOW_EXTRA), vol.Length(min=1))])
|
vol.All([vol.All(vol.Schema({}, extra=vol.ALLOW_EXTRA), vol.Length(min=1))])
|
||||||
),
|
),
|
||||||
vol.Optional("homekit"): vol.Schema({vol.Optional("models"): [str]}),
|
vol.Optional("homekit"): vol.Schema({vol.Optional("models"): [str]}),
|
||||||
vol.Required("documentation"): str,
|
vol.Required(
|
||||||
|
"documentation"
|
||||||
|
): vol.Url(), # pylint: disable=no-value-for-parameter
|
||||||
vol.Optional("quality_scale"): vol.In(SUPPORTED_QUALITY_SCALES),
|
vol.Optional("quality_scale"): vol.In(SUPPORTED_QUALITY_SCALES),
|
||||||
vol.Required("requirements"): [str],
|
vol.Required("requirements"): [str],
|
||||||
vol.Required("dependencies"): [str],
|
vol.Required("dependencies"): [str],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user