Formatting
It is possible to format files in-place or via standard i/o.
sh
olpat fmt foo.tomlOr
sh
cat foo.toml | olpat fmt -INFO
By default olpat will bail on documents that contain syntax errors to avoid destructive edits, you can use the --force flag to suppress this and try to format the invalid document(s) anyway.
Options
Formatter options are read from the configuration file, on top of that it is possible to specify overrides via the --option flag:
sh
olpat fmt --option indent_tables=false foo.tomlCheck
It is possible to check whether the given files are properly formatted via the --check flag. When this flag is supplied, no formatting will be done.