diff options
author | Gusted | 2021-11-11 06:28:45 +0100 |
---|---|---|
committer | GitHub | 2021-11-11 13:28:45 +0800 |
commit | a4dc0c5a82be7fbb472ec9dba204378bfd03dc8c (patch) | |
tree | d9e9d7790e847ad9aad5df319e9f35a7d69d912a /.golangci.yml | |
parent | 433e81aecf0325163292c3d0a732a5d80d25dc84 (diff) |
Remove `golint` as linter (#17609)
- Partialy resolvess #17596
- In the newer versions of `golangci-lint`, golint is deprecated and
replaced by the `revive` linter. Thus removing the `golint` linter is a
good idea, as we're already using the `revive` linter which covers all
the current `golint` cases.
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to '.golangci.yml')
-rw-r--r-- | .golangci.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml index 2d66e01ff..abdd276cb 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -9,7 +9,6 @@ linters: - unused - structcheck - varcheck - - golint - dupl #- gocyclo # The cyclomatic complexety of a lot of functions is too high, we should refactor those another time. - gofmt |