httpx/scripts/lint
2025-12-10 17:41:54 +04:00

12 lines
203 B
Bash
Executable File

#!/bin/sh -e
export SOURCE_FILES="httpx tests"
set -x
echo "==> Running linting checks…"
uv run ruff check --fix $SOURCE_FILES
echo "==> Formatting source code…"
uv run ruff format $SOURCE_FILES