#!/bin/sh -e

export SOURCE_FILES="starlette tests"

set -x

uv run ruff format $SOURCE_FILES
uv run ruff check --fix $SOURCE_FILES
