From f27c4e54007df57b6c536947eb04673ead14523c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20S=C3=B6derlund?= Date: Wed, 5 Jan 2022 09:23:53 +0100 Subject: [PATCH] feat(mggolangcilint): --fix issues Fixes formatting and imports automatically. --- targets/mggolangcilint/targets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/mggolangcilint/targets.go b/targets/mggolangcilint/targets.go index 475bda97..c57b3b70 100644 --- a/targets/mggolangcilint/targets.go +++ b/targets/mggolangcilint/targets.go @@ -55,7 +55,7 @@ func GolangciLint(ctx context.Context) error { return err } } - return sh.RunV(executable, "run", "-c", configPath) + return sh.RunV(executable, "run", "-c", configPath, "--fix") } func prepare(ctx context.Context) error {