Skip to content

Commit 0585a83

Browse files
committed
Remove fully inactivated linters
Currently golangci-lint fails with these errors: ERRO [linters_context] golint: This linter is fully inactivated: it will not produce any reports. ERRO [linters_context] interfacer: This linter is fully inactivated: it will not produce any reports. ERRO [linters_context] maligned: This linter is fully inactivated: it will not produce any reports. I could not find any docs explaining what "fully inactivated" mean, but based this PR[1] it seems that these linters do nothing now. Removing the linters fixes this issue without changing linting, as they did not produce any report. Looking in the linters docs[2] I did not find a replacement for "interfacer" and "malinged" linters. "stylecheck" seems to be a replacement for "golint", but we need to fix the code to enable it. [1] golangci/golangci-lint#4436 [2] https://golangci-lint.run/usage/linters/
1 parent 5c2c1d6 commit 0585a83

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.golangci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,13 @@ linters:
3333
#- gocyclo
3434
#- gofmt
3535
- goimports
36-
- golint
3736
#- gomnd
3837
#- goprintffuncname
3938
#- gosec
4039
- gosimple
4140
- govet
4241
- ineffassign
43-
- interfacer
4442
#- lll
45-
- maligned
4643
- megacheck
4744
#- misspell
4845
#- nakedret

0 commit comments

Comments
 (0)