Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javanile/cmdlint
Command-line output linter
https://github.com/javanile/cmdlint
cicd cli linter output
Last synced: 17 days ago
JSON representation
Command-line output linter
- Host: GitHub
- URL: https://github.com/javanile/cmdlint
- Owner: javanile
- License: mit
- Created: 2023-11-07T19:41:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-14T16:43:23.000Z (about 1 year ago)
- Last Synced: 2023-11-15T15:43:45.306Z (about 1 year ago)
- Topics: cicd, cli, linter, output
- Language: Shell
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# cmdlint
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
cmdlint is a command-line utility that analyzes typical use cases of a command passed as an argument and checks for any formal errors in the command's output.
## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)## Installation
You can install cmdlint using `curl`:
```bash
curl https://raw.githubusercontent.com/javanile/cmdlint/main/bin/cmdlint -o cmdlint
chmod +x cmdlint
./cmdlint
```## Usage
To analyze a command's output, simply run cmdlint with the command as an argument. For example:
```bash
./cmdlint your_command_here
```Replace `"your_command_here"` with the actual command you want to analyze. cmdlint will process the command's output and report any formal errors.
## Contributing
We welcome contributions to cmdlint! If you encounter any issues, have feature requests, or want to contribute to the project, please check our [Contribution Guidelines](CONTRIBUTING.md).
## License
This project is licensed under the [MIT License](LICENSE). Feel free to use, modify, and distribute it as per the license terms.