We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0819f89 commit 0eea3b5Copy full SHA for 0eea3b5
.golangci.yaml
@@ -0,0 +1,10 @@
1
+run:
2
+ tests: false
3
+ timeout: 5m
4
+
5
+linters:
6
+ disable:
7
+ - gosimple
8
+ - staticcheck
9
+ - stylecheck
10
+ - unused
Makefile
@@ -55,7 +55,7 @@ GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
55
golangci-lint:
56
@[ -f $(GOLANGCI_LINT) ] || { \
57
set -e ;\
58
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell dirname $(GOLANGCI_LINT)) v1.45.2 ;\
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell dirname $(GOLANGCI_LINT)) v1.46.2 ;\
59
}
60
61
.PHONY: check-license-headers
0 commit comments