Skip to content
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

Incorrect yaml formatting #2

Open
rbroderi opened this issue Apr 28, 2024 · 3 comments
Open

Incorrect yaml formatting #2

rbroderi opened this issue Apr 28, 2024 · 3 comments

Comments

@rbroderi
Copy link

Dapperdata incorrectly fixes yaml files when a list is at the root level of a document

-   id: trailing-whitespace
    name: Trim Trailing Whitespace
    description: This hook trims trailing whitespace.
    entry: trailing-whitespace-fixer
    language: python
    types: [text]

to

- id: trailing-whitespace
    name: Trim Trailing Whitespace
    description: This hook trims trailing whitespace.
    entry: trailing-whitespace-fixer
    language: python
    types: [text]

@rbroderi
Copy link
Author

this appears to be related to yaml.indent(mapping=2, sequence=4, offset=2), if i change it to yaml.indent(mapping=2, sequence=2, offset=0) dapperdata (ruamel) correctly formats the above yaml. Looking into ruamel to see if there is an open bug.

@rbroderi
Copy link
Author

@tedivm
Copy link
Owner

tedivm commented May 5, 2024

Applying the (mapping=2, sequence=2, offset=0) breaks other tests, so that's not going to work. I'm going to wait on the upstream library to see if they make any fixes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants