From 4cbf3511c38d44863793ef99698b282e4890eba6 Mon Sep 17 00:00:00 2001 From: Elliot <67360013+elliot40404@users.noreply.github.com> Date: Thu, 9 Jan 2025 03:48:24 +0530 Subject: [PATCH] added lint-fix cmd --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 4e7f051..1e4bafe 100644 --- a/justfile +++ b/justfile @@ -24,6 +24,9 @@ clean: lint: golangci-lint run +lint-fix: + golangci-lint run --fix + vendor: go mod tidy go mod vendor