From 41266b8858a134654ccf6374cf9447d94267243b Mon Sep 17 00:00:00 2001 From: Mansur Uralov Date: Thu, 5 Oct 2023 12:56:18 +0200 Subject: [PATCH] Revert fmt and imports Makefile tasks --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 69c541efe..fd7c58bb8 100644 --- a/Makefile +++ b/Makefile @@ -256,10 +256,10 @@ lint-thoroughly: go-gen: go generate ./... -fmt: ## Reformat files using `go fmt` +fmt-local: ## Reformat files using `go fmt` go fmt $$($(DIRS_TO_CHECK)) -imports: ## Optimize imports +imports-local: ## Optimize imports goimports -w -l $$($(FILES_TO_CHECK)) ########## Kyma CLI ###########