Skip to content

Commit 0eea3b5

Browse files
committed
🐛 temporarily disabling some lint checks
golangci/golangci-lint#2859
1 parent 0819f89 commit 0eea3b5

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.golangci.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -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

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
5555
golangci-lint:
5656
@[ -f $(GOLANGCI_LINT) ] || { \
5757
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 ;\
58+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell dirname $(GOLANGCI_LINT)) v1.46.2 ;\
5959
}
6060

6161
.PHONY: check-license-headers

0 commit comments

Comments
 (0)