swt 2.0.0

🍬 Sweet: A blazing-fast code health and architecture analyzer.
Documentation
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -e

echo "🔍 Running pre-push checks..."

cargo fmt -- --check
cargo clippy -- -D warnings
cargo run -- . --quiet

echo "✅ Quality checks passed."