aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-01-08 01:28:14 +0700
committerShulhan <ms@kilabit.info>2025-01-08 01:28:14 +0700
commit26a3ccad0912510dbbf108285b113dfa02274ad1 (patch)
treee954d6017c11b34beb12f664356a912772145f08
parent5319e3f4f05e724d9c0d6485b152b353dbbb2407 (diff)
downloadhaminer-26a3ccad0912510dbbf108285b113dfa02274ad1.tar.xz
all: replace golangci-lint with go vet
Golangci-lint does not works when working with gotip, use too much memory, and become red herring and subjective instead of correctness.
-rw-r--r--Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 3ea3fca..c2df6ed 100644
--- a/Makefile
+++ b/Makefile
@@ -37,12 +37,7 @@ test-integration:
lint:
-fieldalignment ./...
-shadow ./...
- -golangci-lint run \
- --presets bugs,metalinter,performance,unused \
- --disable exhaustive \
- --disable musttag \
- --disable bodyclose \
- ./...
+ go vet ./...
install:
go install -v ./cmd/haminer