diff options
| author | Shulhan <ms@kilabit.info> | 2025-01-08 01:17:23 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-01-08 01:23:17 +0700 |
| commit | fa9d5695cd1b10bf56dd55e10bb9515dd910c2fb (patch) | |
| tree | fc451266727db2504faa9733a53990d74b15c3d9 | |
| parent | 0826f7b74d037f7b48ad392e72dbde07059c1bd4 (diff) | |
| download | gotp-fa9d5695cd1b10bf56dd55e10bb9515dd910c2fb.tar.xz | |
all: replace golangci-lint with go vet
Golangci-lint is too unreliable for working with gotip, use too
much memory, and its become red herring and subjective instead of
correctness.
| -rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -13,12 +13,7 @@ test: lint: -fieldalignment ./... -shadow ./... - -golangci-lint run \ - --presets bugs,metalinter,performance,unused \ - --disable exhaustive \ - --disable musttag \ - --disable bodyclose \ - ./... + go vet ./... build: mkdir -p _sys/usr/bin/ |
