From 697eb33e2c96c701f034c8ea4fe732355d228741 Mon Sep 17 00:00:00 2001 From: akartasov Date: Mon, 25 Oct 2021 09:13:44 +0700 Subject: [PATCH] fix: remove vendor and disable-all options, disable the errcheck linter Signed-off-by: akartasov --- .golangci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index abb03bf..c0809b3 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,10 +1,9 @@ run: issues-exit-code: 1 tests: true - skip-dirs: - - vendor linters: - disable-all: true + disable: + - errcheck enable: - deadcode - goimports