From f8c8044605e3e0c14b21ab45fe59a2f4b7e46f5a Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Wed, 23 Oct 2024 12:26:35 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB(makefile)=20a?= =?UTF-8?q?dd=20frontend-lint=20cmd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the command frontend-lint to the makefile. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 925485d9..f682bd08 100644 --- a/Makefile +++ b/Makefile @@ -314,6 +314,10 @@ frontend-install: ## install the frontend locally cd $(PATH_FRONT_IMPRESS) && yarn .PHONY: frontend-install +frontend-lint: ## run the frontend linter + cd $(PATH_FRONT) && yarn lint +.PHONY: frontend-lint + run-frontend-development: ## Run the frontend in development mode @$(COMPOSE) stop frontend-dev cd $(PATH_FRONT_IMPRESS) && yarn dev