From 26a3ccad0912510dbbf108285b113dfa02274ad1 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Wed, 8 Jan 2025 01:28:14 +0700 Subject: 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. --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 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 -- cgit v1.3