mirror of
https://github.com/devmobasa/wayscriber.git
synced 2026-06-03 03:54:42 +02:00
12 lines
257 B
Bash
Executable File
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"
|