google / yamlfmt

An extensible command line tool or library to format yaml files.
Apache License 2.0
1.2k stars 48 forks source link

FR: Add config option to enable spaces around braces (curly brackets) #184

Open thiagowfx opened 6 months ago

thiagowfx commented 6 months ago

For example, instead of the current behaviour:

extra_vars: {ansible_python_interpreter: /usr/bin/python2.7}

Allow the following one via a config setting:

extra_vars: { ansible_python_interpreter: /usr/bin/python2.7 }

Precedence: Rubocop, Prettier

braydonk commented 6 months ago

Thanks for the feature request, I can probably come up with a way to do this. I'll try and get it into the next release if I can get it working.

braydonk commented 5 months ago

This ended up being more nasty to implement than I expected, so it didn't make the cut for the recent release. I'll keep trying to get it figured out.