certain confidence - no need to waste tokens on another assistant when it's a no brainer fix for Claude

This commit is contained in:
Fahad
2025-06-19 17:05:43 +04:00
parent 91acc0bd26
commit 79abb9ca7e
12 changed files with 998 additions and 61 deletions

View File

@@ -67,16 +67,16 @@ echo "📋 Step 1: Running Linting and Formatting Checks"
echo "--------------------------------------------------"
echo "🔧 Running ruff linting with auto-fix..."
$RUFF check --fix
$RUFF check --fix --exclude test_simulation_files
echo "🎨 Running black code formatting..."
$BLACK .
$BLACK . --exclude="test_simulation_files/"
echo "📦 Running import sorting with isort..."
$ISORT . --skip-glob=".zen_venv/*"
$ISORT . --skip-glob=".zen_venv/*" --skip-glob="test_simulation_files/*"
echo "✅ Verifying all linting passes..."
$RUFF check
$RUFF check --exclude test_simulation_files
echo "✅ Step 1 Complete: All linting and formatting checks passed!"
echo ""