clapfig 0.16.0

Rich, layered configuration for Rust CLI apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e

# Shared checks used by both pre-commit and CI.
# Usage: scripts/check

echo "๐Ÿ“ Checking formatting..."
cargo fmt --all -- --check

echo "๐Ÿ“Ž Running clippy..."
cargo clippy --all-targets -- -D warnings

echo "๐Ÿงช Running tests..."
cargo test --all

echo "โœ… All checks passed!"