From 27a57c1f09bf0dceaf3fb61db55018c54140ceb3 Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Wed, 23 Jul 2025 00:22:26 -0700 Subject: [PATCH] remove pre commit stuff --- scripts/setup.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/scripts/setup.sh b/scripts/setup.sh index c9beb36b..6a8ebcad 100644 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -88,17 +88,6 @@ print_success "All dependencies installed successfully" # Activate virtual environment and run additional setup print_status "Setting up development tools..." -# Setup pre-commit hooks -print_status "Installing pre-commit hooks..." -poetry run pre-commit install -poetry run pre-commit install --hook-type commit-msg - -print_success "Pre-commit hooks installed" - -# Run pre-commit on all files to ensure everything is set up correctly -print_status "Running pre-commit on all files (this may take a while on first run)..." -poetry run pre-commit run --all-files || print_warning "Some pre-commit checks failed - this is normal on first setup" - # Create .env file if it doesn't exist if [ ! -f ".env" ]; then print_status "Creating .env file template..." @@ -150,6 +139,5 @@ print_status "Useful commands:" echo " - poetry shell # Activate virtual environment" echo " - poetry run python