We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6939505 commit 4b3f90dCopy full SHA for 4b3f90d
.golangci.yml
@@ -1,16 +1,16 @@
1
linters:
2
enable:
3
- - structcheck
4
- - varcheck
5
- - staticcheck
6
- - unconvert
7
- gofmt
8
- goimports
9
- - golint
10
- ineffassign
11
- - vet
12
- - unused
13
- misspell
+ - revive
+ - staticcheck
+ - structcheck
+ - unconvert
+ - unused
+ - varcheck
+ - vet
14
disable:
15
- errcheck
16
console.go
@@ -78,7 +78,7 @@ func Current() (c Console) {
78
}
79
80
// ConsoleFromFile returns a console using the provided file
81
-// nolint:golint
+// nolint:revive
82
func ConsoleFromFile(f File) (Console, error) {
83
if err := checkConsole(f); err != nil {
84
return nil, err
0 commit comments