mirror of
https://github.com/home-assistant/developers.home-assistant.git
synced 2025-07-09 10:26:30 +00:00
puts manifest in order (#1678)
This commit is contained in:
parent
8d1a03d738
commit
a8ff3d9c47
@ -9,16 +9,16 @@ Every integration has a manifest file to specify basic information about an inte
|
|||||||
{
|
{
|
||||||
"domain": "hue",
|
"domain": "hue",
|
||||||
"name": "Philips Hue",
|
"name": "Philips Hue",
|
||||||
"integration_type": "hub",
|
|
||||||
"documentation": "https://www.home-assistant.io/components/hue",
|
|
||||||
"issue_tracker": "https://github.com/balloob/hue/issues",
|
|
||||||
"dependencies": ["mqtt"],
|
|
||||||
"after_dependencies": ["http"],
|
"after_dependencies": ["http"],
|
||||||
"codeowners": ["@balloob"],
|
"codeowners": ["@balloob"],
|
||||||
"requirements": ["aiohue==1.9.1"],
|
"dependencies": ["mqtt"],
|
||||||
"quality_scale": "platinum",
|
"documentation": "https://www.home-assistant.io/components/hue",
|
||||||
|
"integration_type": "hub",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["aiohue"]
|
"issue_tracker": "https://github.com/balloob/hue/issues",
|
||||||
|
"loggers": ["aiohue"],
|
||||||
|
"requirements": ["aiohue==1.9.1"],
|
||||||
|
"quality_scale": "platinum"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,12 +28,12 @@ Or a minimal example that you can copy into your project:
|
|||||||
{
|
{
|
||||||
"domain": "your_domain_name",
|
"domain": "your_domain_name",
|
||||||
"name": "Your Integration",
|
"name": "Your Integration",
|
||||||
"integration_type": "hub",
|
|
||||||
"documentation": "https://www.example.com",
|
|
||||||
"dependencies": [],
|
|
||||||
"codeowners": [],
|
"codeowners": [],
|
||||||
|
"dependencies": [],
|
||||||
|
"documentation": "https://www.example.com",
|
||||||
|
"integration_type": "hub",
|
||||||
|
"iot_class": "cloud_polling",
|
||||||
"requirements": [],
|
"requirements": [],
|
||||||
"iot_class": "cloud_polling"
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user