Skip to content

Commit

Permalink
disable more unsupported linters
Browse files Browse the repository at this point in the history
`maligned` is apparently replaced with `govet fieldalignment`, but
enabling that produces a million errors so I haven't done that.

`golint` is apparently close to `revive`, but again that produces lots
of warnings.

`interface` apparently made bad suggestions and is removed without
replacement.
  • Loading branch information
richvdh committed Nov 5, 2024
1 parent e64c4a1 commit 810787d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ linters:
enable:
- typecheck
- gocyclo
- golint
- maligned
- ineffassign
# - gosec - complains about weak cryptographic primitive sha1 and TLS InsecureSkipVerify set true in getTransport
- misspell
Expand All @@ -14,5 +12,4 @@ linters:
# - goconst
- unconvert
- errcheck
- interfacer
# - testify - not available in golangci-lint

0 comments on commit 810787d

Please sign in to comment.