Which option do you chose for make configuration files easier to keep track.
!include filename.yaml
!include_dir_list
!include_dir_named
!include_dir_merge_list
!include_dir_merge_named
0voters
!include filename.yaml is the statement that tells Home Assistant to insert the contents of filename.yaml at that point !include_dir_list will return the content of a directory as a list with each file content being an entry in the list. !include_dir_named will return the content of a directory as a dictionary which maps filename => content of file. !include_dir_merge_list will return the content of a directory as a list by merging all files (which should contain a list) into 1 big list. !include_dir_merge_named will return the content of a directory as a dictionary by loading each file and merging it into 1 big dictionary.
ā¦ and include_dir_merge_list.
Until a few minutes ago, I was using include_dir_merge_list for two items, but I noticed that thereās no
real reason to do so.
So, for example, instead of using media_player: !include_dir_merge_list <dir>
Which configuration can include in package. Home assistant documentation have some e.g.- switch, light, automation and group. Which other configurations can include in packages ?