#!/bin/bash # Lint backend code set -e cd "$(dirname "$0")/../../backend" echo "Running ruff linter..." uv run ruff check app tests echo "Running mypy type checker..." uv run mypy app echo "Backend linting complete!"