- Does it validate as well as format?
- Yes — parse errors are reported with line/column. The formatter won't output invalid TOML; if input is malformed, you get the original back with an error.
- What style conventions?
- Inline tables on single lines; array-of-tables indented; multi-line strings with triple-quote markers. Matches the TOML spec examples.
- Does it alphabetize keys?
- Off by default (TOML is order-sensitive for ergonomic grouping). Toggle on for deterministic output — useful for lockfile-like files where diffs matter.
- What TOML version does it target?
- TOML 1.0.0 — the current spec. All 1.0 features supported: inline tables, arrays of tables, dotted keys, multi-line strings.