12 lines
203 B
Bash
Executable File
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
|