diff --git a/.golangci.yml b/.golangci.yml index 51c6efb..4ff6418 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -12,7 +12,6 @@ linters: enable: - asciicheck - bodyclose - - depguard - dupl - errcheck - exhaustive @@ -114,6 +113,9 @@ linters: # Unfortunately too much false-positives, e.g. for a 0700 umask or number 10 when using strconv.FormatInt() - gomnd + # Needs package whitelists + - depguard + issues: # Don't hide multiple issues that belong to one class since GitHub annotations can handle them all nicely. max-issues-per-linter: 0 diff --git a/internal/command/logs/vm.go b/internal/command/logs/vm.go index a2f51fb..4eb666d 100644 --- a/internal/command/logs/vm.go +++ b/internal/command/logs/vm.go @@ -31,7 +31,7 @@ func runLogsVM(cmd *cobra.Command, args []string) error { } for _, line := range lines { - fmt.Print(line) + fmt.Println(line) } return nil