You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
References are relatively easy, the main issue will be how to identify this:
configuration.yaml:
automation: !include automations.yaml
automations.yaml:
- alias: automation_one
- alias: automation_two
without building a complete model of all included configuration files, how do I check that those sequence items are actually children of automation? The current code analyzes the YAML tree per file.
The IntelliJ YAML plugin seems to be recognizing YAML anchors, but in our case YAML tags as used as anchors. We'll have to implement something to handle those.
This will hardly make into 1.0: it turns out it is more difficult than it seemed. As a first step, I might recognize in a "special way" the UI-managed YAML files (automation.yaml, scripts.yaml).
The text was updated successfully, but these errors were encountered:
References are relatively easy, the main issue will be how to identify this:
configuration.yaml:
automations.yaml:
without building a complete model of all included configuration files, how do I check that those sequence items are actually children of
automation
? The current code analyzes the YAML tree per file.The IntelliJ YAML plugin seems to be recognizing YAML anchors, but in our case YAML tags as used as anchors. We'll have to implement something to handle those.
This will hardly make into 1.0: it turns out it is more difficult than it seemed. As a first step, I might recognize in a "special way" the UI-managed YAML files (automation.yaml, scripts.yaml).
The text was updated successfully, but these errors were encountered: