swt 3.2.0

🍬 Sweet: A blazing-fast code health and architecture analyzer.
Documentation
#!/bin/bash
set -e

echo "🔍 Running pre-push checks (Comprehensive)..."

# 1. Format Check
echo "  ↳ Checking code formatting..."
cargo fmt -- --check

# 2. Comprehensive Clippy Check (All features, All targets)
echo "  ↳ Running Clippy (All features & targets)..."
cargo clippy --all-targets --all-features -- -D warnings

# 3. Project tests
echo "  ↳ Running project tests..."
cargo test --all-features

# 4. Smoke test on self
echo "  ↳ Running self-analysis smoke test..."
cargo run -- . --quiet

echo "✅ Quality checks passed."