We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I receive a "Duplicate Key" error highlight and tooltip when reference multiple YAML anchors at the same level within an element.
For example, defining two different anchors, which do not share the same keys:
x-anchor-one: &anchor_one sub-property-one: "one" x-anchor-two: &anchor_two sub-property-one: "two"
causes the error when referenced as:
object: property: <<: &anchor_one <<: &anchor_two
Full snippet:
x-anchor-one: &anchor_one sub-property-one: "one" x-anchor-two: &anchor_two sub-property-one: "two" object: property: <<: &anchor_one <<: &anchor_two
Screenshot:
The text was updated successfully, but these errors were encountered:
Fixed in 0.0.12 release.
Sorry, something went wrong.
No branches or pull requests
I receive a "Duplicate Key" error highlight and tooltip when reference multiple YAML anchors at the same level within an element.
For example, defining two different anchors, which do not share the same keys:
causes the error when referenced as:
Full snippet:
Screenshot:
The text was updated successfully, but these errors were encountered: