Files
devmobasa 446fbc67ac cleanup
2025-11-27 16:40:06 +01:00

12 lines
257 B
Bash
Executable File

#!/bin/bash
# Format and lint the project with all features.
set -euo pipefail
# Format first so clippy runs on the normalized code.
cargo fmt
# Lint everything with all features.
cargo clippy --workspace --all-features
echo "✅ fmt + clippy completed"