clapfig 0.18.1

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

# Shared checks used by both pre-commit hook and CI.
# Each step is its own script so they can be run individually.

SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"

"$SCRIPT_DIR/check-fmt"
"$SCRIPT_DIR/check-lint"
"$SCRIPT_DIR/check-tests"

echo ""
echo "All checks passed!"