...

Text file src/github.com/BurntSushi/toml/cmd/tomlv/README.md

Documentation: github.com/BurntSushi/toml/cmd/tomlv

     1# TOML Validator
     2
     3If Go is installed, it's simple to try it out:
     4
     5    $ go install github.com/BurntSushi/toml/cmd/tomlv@master
     6    $ tomlv some-toml-file.toml
     7
     8You can see the types of every key in a TOML file with:
     9
    10    $ tomlv -types some-toml-file.toml
    11
    12At the moment, only one error message is reported at a time. Error messages
    13include line numbers. No output means that the files given are valid TOML, or
    14there is a bug in `tomlv`.

View as plain text