We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd03395 commit 1f1d40dCopy full SHA for 1f1d40d
.golangci.yml
@@ -14,11 +14,7 @@ linters:
14
- err113
15
- nlreturn
16
- wsl
17
-
18
- # Deprecated ones:
19
- - execinquery
20
- - gomnd
21
- - exportloopref
+ - tenv
22
23
issues:
24
exclude-files:
pkg/utils/utils.go
@@ -1,7 +1,10 @@
1
package utils
2
3
-import "fmt"
+import (
4
+ "fmt"
5
+ "os"
6
+)
7
8
func Println(a ...interface{}) {
- _, _ = fmt.Println(a...) //nolint: forbidigo
9
+ _, _ = fmt.Fprintln(os.Stderr, a...)
10
}
0 commit comments