diff options
| author | Shulhan <ms@kilabit.info> | 2024-12-12 23:15:21 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-01-12 02:13:25 +0700 |
| commit | dca55c88739a656dc31b08bdb1809a0d12c2b0c7 (patch) | |
| tree | ff5a2054fa9b5b84fa2d1d520aef83fa9ab6c616 | |
| parent | 1b3ca357ef8294fcf9a35d46cc2ea194b4b09dc2 (diff) | |
| download | awwan-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-- | Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -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. |
