- What style conventions does the formatter follow?
- Two-space indentation, no trailing whitespace, unified flow/block style. The goal is output compatible with yamllint's default config.
- Will it preserve my comments?
- Yes — comments stay attached to the line above or to the same line, whichever matches the original position. Structural comments at the top of the file are kept at the top.
- Can I force flow style or block style?
- Toggle between them. Flow style is compact (`{key: value}`) and matches JSON; block style is the multi-line hierarchical form most YAML files use.
- Does it sort keys?
- Off by default — YAML often encodes configuration order (e.g. Kubernetes manifests rely on order). Toggle 'sort keys' if you want alphabetical.