From d916d3a67952eb74eea856e96c6ef05476f3e584 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Thu, 1 Apr 2021 12:41:21 +0200 Subject: [PATCH] Remove deprecated linter Signed-off-by: Knut Ahlers --- .golangci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 17d0910..4b80930 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -46,7 +46,6 @@ linters: - nakedret # Finds naked returns in functions greater than a specified function length [fast: true, auto-fix: false] - noctx # noctx finds sending http request without context.Context [fast: true, auto-fix: false] - nolintlint # Reports ill-formed or insufficient nolint directives [fast: true, auto-fix: false] - - scopelint # Scopelint checks for unpinned variables in go programs [fast: true, auto-fix: false] - staticcheck # Staticcheck is a go vet on steroids, applying a ton of static analysis checks [fast: true, auto-fix: false] - structcheck # Finds unused struct fields [fast: true, auto-fix: false] - stylecheck # Stylecheck is a replacement for golint [fast: true, auto-fix: false]