fix linter

This commit is contained in:
Julian Pawlowski 2025-11-03 17:33:01 +00:00
parent 6d4669c8e7
commit 0a245a0e12
2 changed files with 8 additions and 0 deletions

View file

@ -6,6 +6,10 @@ set -e
cd "$(dirname "$0")/.."
if [ -z "$VIRTUAL_ENV" ]; then
. "$HOME/.venv/bin/activate"
fi
echo "==> Running linting tools..."
echo "==> Running Ruff format..."

View file

@ -6,6 +6,10 @@ set -e
cd "$(dirname "$0")/.."
if [ -z "$VIRTUAL_ENV" ]; then
. "$HOME/.venv/bin/activate"
fi
echo "==> Checking code format..."
uv run ruff format . --check