chore: new reviewable command in root make file to check all the entities lint and type error

This commit is contained in:
=
2024-08-12 13:19:55 +05:30
parent 6afc17b84b
commit 897ce1f267

View File

@@ -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