Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dottorblaster/tlint
Validation engine for the Trento Checks DSL
https://github.com/dottorblaster/tlint
Last synced: about 1 month ago
JSON representation
Validation engine for the Trento Checks DSL
- Host: GitHub
- URL: https://github.com/dottorblaster/tlint
- Owner: dottorblaster
- License: mit
- Created: 2022-06-30T15:19:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-17T09:02:24.000Z (about 2 years ago)
- Last Synced: 2024-10-18T06:03:32.496Z (2 months ago)
- Language: Rust
- Size: 70.3 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Rashomon
Validation engine for Trento Checks DSL.## Usage
```sh
$ tlint -h
tlint 0.9.0USAGE:
tlint [OPTIONS]OPTIONS:
-f, --file
-h, --help Print help information
-V, --version Print version information
```Rashomon accepts standard input (until EOF):
```sh
$ cat check.yml | target/debug/tlint
156F64 - expectations - List must not be empty
```Or you can use the `-f` option to directly let Rashomon pick a file.
```sh
$ tlint -f check.yml
156F64 - expectations - List must not be empty
```