From 1bf9a243e077bcbb9cae784a1461032462b4b963 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sun, 18 May 2025 11:21:36 -0600 Subject: [PATCH] chore(justfile): fix gofumpt command input Change gofumpt command in justfile to use '.' instead of './...' to format the root directory and not only children directories. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index dc39f38a375a87c9a95592d20a1ead770d8ce8b3..a71d4f205de60b850ff70e05ec0a6d73de72ef0b 100644 --- a/justfile +++ b/justfile @@ -11,7 +11,7 @@ default: fmt lint staticcheck test vuln reuse fmt: # Formatting all Go source code go install mvdan.cc/gofumpt@latest - gofumpt -l -w ./... + gofumpt -l -w . lint: # Linting Go source code