#!/bin/bash
# Pre-commit hook to check Rust formatting
# We're already in the project root
# cd sql-cli || exit 1
# Check if cargo fmt would make changes
if ! ; then
fi
# Run tests (optional - comment out if too slow)
# echo "Running tests..."
# if ! cargo test --quiet > /dev/null 2>&1; then
# echo "❌ Some tests are failing!"
# echo "Run 'cargo test' to see details"
# exit 1
# fi
# echo "✅ All tests passed"