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
Hi I want to use the extension with Azure DevOps Pipelines and want to use templates.
This is the result after formatting:
name: $(Build.BuildId) variables: - group: Custom Settings trigger: none stages: - parameters: firstparamter: XXX secondparameter: YYY template: templates\CI.yml
This is the expected result: I'd like to have the template line before the parameters line.
template
parameters
name: $(Build.BuildId) variables: - group: 'Custom Settings' trigger: none stages: - template: templates\CI.yml parameters: firstparamter: 'XXX' secondparameter: 'YYY'
my settings for the extension:
{ "vscode-yaml-sort.customSortKeywords_2": [ "name", "variables", "trigger", "resources" ], "vscode-yaml-sort.emptyLinesUntilLevel": 1, "vscode-yaml-sort.useLeadingDashes": false }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi I want to use the extension with Azure DevOps Pipelines and want to use templates.
This is the result after formatting:
This is the expected result:
I'd like to have the
template
line before theparameters
line.my settings for the extension:
The text was updated successfully, but these errors were encountered: