hass-core/script/hassfest/manifest_helper.py
Paulus Schoutsen e8343452cd
Validate component usage (#23037)
* Update manifest validator

* Update circle

* Update text

* Typo

* fix link to codeowners

* Merge CODEOWNERS into hassfest

* Annotate errors with fixable

* Convert error to warning

* Lint

* Make abs path

* Python 3.5...

* Typo

* Fix tests
2019-04-13 13:17:01 -07:00

15 lines
373 B
Python

"""Helpers to deal with manifests."""
import json
import pathlib
component_dir = pathlib.Path('homeassistant/components')
def iter_manifests():
"""Iterate over all available manifests."""
manifests = [
json.loads(fil.read_text())
for fil in component_dir.glob('*/manifest.json')
]
return sorted(manifests, key=lambda man: man['domain'])