#!/usr/bin/env bash
# Rewrite in place: the formatter first, then the lint rules that know how to fix themselves.
set -euo pipefail
cd "$(dirname "$0")/.."

uv run ruff format .
uv run ruff check --fix .
