certain confidence - no need to waste tokens on another assistant when it's a no brainer fix for Claude
This commit is contained in:
@@ -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 ""
|
||||
|
||||
Reference in New Issue
Block a user