github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/toml/cmd/tomlv/README.md (about)

     1  # TOML Validator
     2  
     3  If Go is installed, it's simple to try it out:
     4  
     5  ```bash
     6  go get github.com/BurntSushi/toml/cmd/tomlv
     7  tomlv some-toml-file.toml
     8  ```
     9  
    10  You can see the types of every key in a TOML file with:
    11  
    12  ```bash
    13  tomlv -types some-toml-file.toml
    14  ```
    15  
    16  At the moment, only one error message is reported at a time. Error messages
    17  include line numbers. No output means that the files given are valid TOML, or 
    18  there is a bug in `tomlv`.
    19  
    20  Compatible with TOML version
    21  [v0.1.0](https://github.com/mojombo/toml/blob/master/versions/toml-v0.1.0.md)
    22