Update golangci-lint to v1.17.1 (#7848)
parent
2f2a4cb898
commit
99a004c343
|
@ -95,3 +95,6 @@ issues:
|
||||||
linters:
|
linters:
|
||||||
- misspell
|
- misspell
|
||||||
text: '`Destory` is a misspelling of `Destroy`'
|
text: '`Destory` is a misspelling of `Destroy`'
|
||||||
|
- linters:
|
||||||
|
- misspell
|
||||||
|
text: '`Unknwon` is a misspelling of `Unknown`'
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -473,6 +473,6 @@ pr:
|
||||||
golangci-lint:
|
golangci-lint:
|
||||||
@hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
@hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
||||||
export BINARY="golangci-lint"; \
|
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
|
fi
|
||||||
golangci-lint run
|
golangci-lint run --deadline=3m
|
||||||
|
|
Loading…
Reference in New Issue