From 897ce1f267f45c63d76e2ef3ff1b220c85b714f5 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 12 Aug 2024 13:19:55 +0530 Subject: [PATCH] chore: new reviewable command in root make file to check all the entities lint and type error --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Makefile b/Makefile index 11143162e..aec2dad74 100644 --- a/Makefile +++ b/Makefile @@ -15,3 +15,16 @@ up-prod: down: docker compose -f docker-compose.dev.yml down + +reviewable-ui: + cd frontend && \ + npm run lint:fix && \ + npm run type:check + +reviewable-api: + cd backend && \ + npm run lint:fix && \ + npm run type:check + +reviewable: reviewable-ui reviewable-api +