summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.golangci.yml3
-rw-r--r--Makefile4
2 files changed, 5 insertions, 2 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 82d0e46694..bee342dd75 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -95,3 +95,6 @@ issues:
linters:
- misspell
text: '`Destory` is a misspelling of `Destroy`'
+ - linters:
+ - misspell
+ text: '`Unknwon` is a misspelling of `Unknown`'
diff --git a/Makefile b/Makefile
index 3d81ebe606..de2692d6a8 100644
--- a/Makefile
+++ b/Makefile
@@ -473,6 +473,6 @@ pr:
golangci-lint:
@hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
export BINARY="golangci-lint"; \
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin v1.16.0; \
+ curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin v1.17.1; \
fi
- golangci-lint run
+ golangci-lint run --deadline=3m