🧑‍💻(makefile) add frontend-lint cmd

Add the command frontend-lint to the makefile.
This commit is contained in:
Anthony LC
2024-10-23 12:26:35 +02:00
committed by Anthony LC
parent a84f4de02c
commit f8c8044605

View File

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