Update linting scripts to use ruff version installed by uv

This commit is contained in:
Mark Backman
2025-12-17 16:28:10 -05:00
parent f9fef78070
commit 31b3bd737a
4 changed files with 19 additions and 19 deletions

View File

@@ -5,6 +5,6 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
echo "Running ruff format..."
ruff format "$PROJECT_ROOT"
uv run ruff format "$PROJECT_ROOT"
echo "Running ruff check..."
ruff check --fix "$PROJECT_ROOT"
uv run ruff check --fix "$PROJECT_ROOT"