diff options
| author | Shulhan <ms@kilabit.info> | 2025-02-03 21:36:10 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-02-03 21:40:14 +0700 |
| commit | a1635783753af6318ff192c1b41c16bb3f7fc76b (patch) | |
| tree | 02511e9615ac5c7a6c06958dc3f331ba07b7b413 /go.mod | |
| parent | 206fc899a4b90c85d3a0906eb4d13e9177082fbb (diff) | |
| download | gotp-a1635783753af6318ff192c1b41c16bb3f7fc76b.tar.xz | |
all: replace external linters with internal command
The fieldalignment and shadow linters are from golang.org/x/tools.
Those linters have an exposed APIs that can be combined into single
call or program, which provided by "pakakeh.go/lib/goanalysis".
This help reduce the tooling need to be installed or setup for
development.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,8 +10,11 @@ require git.sr.ht/~shulhan/pakakeh.go v0.60.0 require ( golang.org/x/crypto v0.32.0 // indirect golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect + golang.org/x/mod v0.22.0 // indirect + golang.org/x/sync v0.10.0 // indirect golang.org/x/sys v0.29.0 // indirect golang.org/x/term v0.28.0 // indirect + golang.org/x/tools v0.29.0 // indirect ) //replace git.sr.ht/~shulhan/pakakeh.go => ../pakakeh.go |
