#!/bin/sh
# ponytail: block push on ruff lint/format errors
set -e
echo "» ruff check..."
.venv/bin/ruff check src tests examples e2e_features_test.py
.venv/bin/ruff format --check src tests examples e2e_features_test.py
