-
-
Notifications
You must be signed in to change notification settings - Fork 775
New issue
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
support reading of properties on implicit block mapping keys #561
base: master
Are you sure you want to change the base?
Conversation
Note that the example is invalid YAML.
|
Gonna check it again later, but I think we should require a space after colon there? |
pyyaml and libyaml can parse it, but that is actually a bug. |
And what about object / array anchor merging ? "@figen/config-eslint@*":
dependencies: &eslint
"eslint": "8.55.0"
"@figen/config-typescript@*":
dependencies: &typescript
"typescript": "^5.3.3"
"figen@*":
dependencies:
<< : {*eslint, *typescript} |
Correct would be:
The syntax itself is correct. The parser doesn't know anything about |
now , the following yaml document can be loaded