aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-12-12 23:15:21 +0700
committerShulhan <ms@kilabit.info>2025-01-12 02:13:25 +0700
commitdca55c88739a656dc31b08bdb1809a0d12c2b0c7 (patch)
treeff5a2054fa9b5b84fa2d1d520aef83fa9ab6c616
parent1b3ca357ef8294fcf9a35d46cc2ea194b4b09dc2 (diff)
downloadawwan-dca55c88739a656dc31b08bdb1809a0d12c2b0c7.tar.xz
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.
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
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.