diff options
| author | Shulhan <ms@kilabit.info> | 2025-01-08 01:28:14 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-01-08 01:28:14 +0700 |
| commit | 26a3ccad0912510dbbf108285b113dfa02274ad1 (patch) | |
| tree | e954d6017c11b34beb12f664356a912772145f08 | |
| parent | 5319e3f4f05e724d9c0d6485b152b353dbbb2407 (diff) | |
| download | haminer-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-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -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 |
