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
It seems to be that yamlfix squashes comments in { }, for example: test.yaml:
--- apiVersion: v1 metadata: annotations: { a : b, # test # # }
--- apiVersion: v1 metadata: annotations: {a: b}
(Comments disappeared.)
See above.
The output has to be like:
--- apiVersion: v1 metadata: annotations: { a: b # test # # }
yamlfix: 1.16.0 Python: 3.11.7 Platform: macOS-13.6.4-arm64-arm-64bit
Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
It seems to be that yamlfix squashes comments in { }, for example:
test.yaml:
Steps to reproduce
(Comments disappeared.)
Current behavior
See above.
Desired behavior
The output has to be like:
Environment
Thank you.
The text was updated successfully, but these errors were encountered: