diff options
| author | Shulhan <ms@kilabit.info> | 2025-02-01 09:43:49 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-02-01 09:43:49 +0700 |
| commit | 3453ab4a27367677de29e98d190da7f752aed5ed (patch) | |
| tree | d284370103d7cad5827d4d0ea1b8a6d5e2df1d44 /go.mod | |
| parent | 3fbbf969aa646d07d26e8d3c0f9a01aff52491a3 (diff) | |
| download | ciigo-3453ab4a27367677de29e98d190da7f752aed5ed.tar.xz | |
all: replace external linters with internal linter
The fieldalignment and shadow is linter from golang.org/x/tools.
This linters actually have an API that can be combined into a program,
which provided by package "pakakeh.go/lib/goanalysis".
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -14,8 +14,11 @@ require ( require ( golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect + golang.org/x/mod v0.22.0 // indirect golang.org/x/net v0.34.0 // indirect + golang.org/x/sync v0.10.0 // indirect golang.org/x/sys v0.29.0 // indirect + golang.org/x/tools v0.29.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) |
