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
For the given config:
"vscode-yaml-sort.emptyLinesUntilLevel": 2, "vscode-yaml-sort.useLeadingDashes": false, "vscode-yaml-sort.lineWidth": 10000, "vscode-yaml-sort.sortOnSave": 0, "vscode-yaml-sort.quotingType": "\"",
The following yaml snippet formats improperly, it looks like the : in url trips of the parser:
:
jobs: build: steps: - run: | ls -al wget http://example.com
Expected:
Actual:
While testing, I removed : in http: and it formats ok:
jobs: build: steps: - run: | ls -al wget http//example.com
gives:
The text was updated successfully, but these errors were encountered:
Same issue here when writing a description that has a ":" in any line other than the first one.
--- description: > first line second line: fails due to the colon
Sorry, something went wrong.
No branches or pull requests
For the given config:
The following yaml snippet formats improperly, it looks like the
:
in url trips of the parser:Expected:
Actual:
While testing, I removed : in http: and it formats ok:
gives:
The text was updated successfully, but these errors were encountered: