From dca55c88739a656dc31b08bdb1809a0d12c2b0c7 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Thu, 12 Dec 2024 23:15:21 +0700 Subject: make: replace linter golangci-lint with "go vet" We are not happy with this linter, it create an illussion of works rather than fixing real issues. The golangci-lint does not works on gotip and its become red herring and subjective rather than correctness. --- Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1f7218d..e34b225 100644 --- a/Makefile +++ b/Makefile @@ -17,13 +17,7 @@ test: lint: -fieldalignment ./... -shadow ./... - -golangci-lint run \ - --presets bugs,metalinter,performance,unused \ - --disable bodyclose \ - --disable contextcheck \ - --disable dupword \ - --disable gomoddirectives \ - ./... + go vet ./... ## embed convert the TypeScript files into JavaScript and embed all _wui ## assets into memfs for web-user interface. -- cgit v1.3