feat(makefile): add command to format and check formatting for api

This commit is contained in:
Vladislav Syrochkin 2025-05-20 11:52:46 +05:00
parent 881a72a66c
commit 131102beba

View File

@ -49,3 +49,12 @@ install:
%::
echo $(MESSAGE)
format-api:
cd api && \
poetry run ruff format .
check-api:
cd api && \
poetry run ruff format . --check