https://github.com/llbbl/homebrew-uncov
homebrew tap for uncov
https://github.com/llbbl/homebrew-uncov
Last synced: 24 days ago
JSON representation
homebrew tap for uncov
- Host: GitHub
- URL: https://github.com/llbbl/homebrew-uncov
- Owner: llbbl
- Created: 2026-02-03T14:34:01.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-03T14:36:17.000Z (5 months ago)
- Last Synced: 2026-05-19T10:16:51.303Z (about 1 month ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Homebrew Tap for uncov
This is the official [Homebrew](https://brew.sh/) tap for [uncov](https://github.com/llbbl/uncov), a CLI tool that reports files with low test coverage from Vitest/Istanbul output.
## Installation
```bash
brew tap llbbl/uncov
brew install uncov
```
Or in a single command:
```bash
brew install llbbl/uncov/uncov
```
## Usage
```bash
uncov # Report files at or below 10% coverage
uncov --threshold 50 # Files at or below 50% coverage
uncov --fail # Exit 1 if any files below threshold
uncov --help # Show all options
```
## Updating
```bash
brew update
brew upgrade uncov
```
## Uninstalling
```bash
brew uninstall uncov
brew untap llbbl/uncov
```
## Supported Platforms
- macOS (Apple Silicon / arm64)
- macOS (Intel / x64)
- Linux (x64)
## Links
- [uncov repository](https://github.com/llbbl/uncov)
- [Releases](https://github.com/llbbl/uncov/releases)
- [Documentation](https://github.com/llbbl/uncov#readme)