Skip to content

TOML rules

Horizontal alignment

toml toml

Entries and comments are not aligned horizontally.

Before

[parent]
foo  = "bar"   # comment
foo2 = "bar2"  # comment2

After

[parent]
foo = "bar"  # comment
foo2 = "bar2"  # comment2