From 695dd0832a624b5b0e716eaa91617924e3a06f65 Mon Sep 17 00:00:00 2001 From: Lukas Gravley Date: Wed, 25 Aug 2021 09:21:26 -0500 Subject: [PATCH] fixed go issues (#1890) * fixed * govet * ughhh --- .github/linters/.golangci.yml | 4 ++-- TEMPLATES/.golangci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/linters/.golangci.yml b/.github/linters/.golangci.yml index c3e3c91a..44171d6d 100644 --- a/.github/linters/.golangci.yml +++ b/.github/linters/.golangci.yml @@ -16,14 +16,14 @@ issues: - goconst linters: enable: - - golint - gosec - unconvert - gocyclo - goconst - goimports - - maligned - gocritic + - govet + - revive linters-settings: errcheck: # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`; diff --git a/TEMPLATES/.golangci.yml b/TEMPLATES/.golangci.yml index c3e3c91a..44171d6d 100644 --- a/TEMPLATES/.golangci.yml +++ b/TEMPLATES/.golangci.yml @@ -16,14 +16,14 @@ issues: - goconst linters: enable: - - golint - gosec - unconvert - gocyclo - goconst - goimports - - maligned - gocritic + - govet + - revive linters-settings: errcheck: # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;