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