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
When yaml includes comments before document start formatters moves it on the top.
Here is the example yaml file:
# -*- coding: utf-8 -*- # vim: ft=yaml # yamllint disable rule:truthy --- name: ci-pipeline on: pull_request: push: branches: [main]
when using formatter with this options I'm not expecting any changes -formatter include_document_start=true,retain_line_breaks_single=true
-formatter include_document_start=true,retain_line_breaks_single=true
instead I'm getting this:
--- # -*- coding: utf-8 -*- # vim: ft=yaml # yamllint disable rule:truthy name: ci-pipeline on: pull_request: push: branches: [main]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When yaml includes comments before document start formatters moves it on the top.
Here is the example yaml file:
when using formatter with this options I'm not expecting any changes
-formatter include_document_start=true,retain_line_breaks_single=true
instead I'm getting this:
The text was updated successfully, but these errors were encountered: