From 823a520266ab51442d8f2d8631a0c2676f79dd3d Mon Sep 17 00:00:00 2001 From: Daniel Hiltgen Date: Tue, 13 Feb 2024 19:38:52 -0800 Subject: [PATCH] Fix lint error on ignored error for win console --- cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cmd.go b/cmd/cmd.go index 55535f7a..a56576ea 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -815,7 +815,7 @@ func NewCLI() *cobra.Command { if runtime.GOOS == "windows" { // Enable colorful ANSI escape code in Windows terminal (disabled by default) - console.ConsoleFromFile(os.Stdout) + console.ConsoleFromFile(os.Stdout) //nolint:errcheck } rootCmd := &cobra.Command{