aboutsummaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
authorGusted2021-11-11 06:28:45 +0100
committerGitHub2021-11-11 13:28:45 +0800
commita4dc0c5a82be7fbb472ec9dba204378bfd03dc8c (patch)
treed9e9d7790e847ad9aad5df319e9f35a7d69d912a /.golangci.yml
parent433e81aecf0325163292c3d0a732a5d80d25dc84 (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.yml1
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