From b0f90235db78eaef23db01fdf4c6ed11b3bbb828 Mon Sep 17 00:00:00 2001 From: Evan Porter Date: Sat, 21 Feb 2026 03:17:59 +0000 Subject: [PATCH] Add `ruff` formating section to README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 20781560..c3cd9fe5 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,20 @@ uv run pytest uv run ruff check --diff . ``` +### Formatting + +This will check the formatting and report any errors: + +```sh +uv run ruff format --check . +``` + +This will automatically format the code: + +```sh +uv run ruff format +``` + ## Manual Setup (without Dev Containers) > Keeping this section as a fallback in case of Dev Container issues.