From 067c1d7fc2abef225febc1a393891695bbba77a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=8Dtalo=20Johnny?= Date: Wed, 30 Jul 2025 09:01:28 -0300 Subject: [PATCH] fix: remove duplicated Makefile target `format_frontend` (#9191) fix: remove duplicated format_frontend target to silence warnings Co-authored-by: Gabriel Luiz Freitas Almeida --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index c334a1846..bff557592 100644 --- a/Makefile +++ b/Makefile @@ -187,10 +187,6 @@ format_backend: ## backend code formatters format: format_backend format_frontend ## run code formatters -format_frontend: ## run biome check and format on frontend code - @echo 'Running Biome check and format on frontend...' - @cd src/frontend && npx @biomejs/biome check --write - format_frontend_check: ## run biome check without formatting @echo 'Running Biome check on frontend...' @cd src/frontend && npx @biomejs/biome check