From 131102bebafe5b6f0bc2d99347b82921ed6784be Mon Sep 17 00:00:00 2001 From: Vladislav Date: Tue, 20 May 2025 11:52:46 +0500 Subject: [PATCH] feat(makefile): add command to format and check formatting for api --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 2fd0e5d..08ef87c 100644 --- a/Makefile +++ b/Makefile @@ -49,3 +49,12 @@ install: %:: echo $(MESSAGE) + +format-api: + cd api && \ + poetry run ruff format . + + +check-api: + cd api && \ + poetry run ruff format . --check