mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 08:47:57 +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",
|
||||
"name": "Soma Connect",
|
||||
"config_flow": true,
|
||||
"documentation": "",
|
||||
"documentation": "https://www.home-assistant.io/integrations/soma",
|
||||
"dependencies": [],
|
||||
"codeowners": ["@ratsept"],
|
||||
"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.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.Required("requirements"): [str],
|
||||
vol.Required("dependencies"): [str],
|
||||
|
Loading…
x
Reference in New Issue
Block a user