aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-02-01 09:43:49 +0700
committerShulhan <ms@kilabit.info>2025-02-01 09:43:49 +0700
commit3453ab4a27367677de29e98d190da7f752aed5ed (patch)
treed284370103d7cad5827d4d0ea1b8a6d5e2df1d44 /go.mod
parent3fbbf969aa646d07d26e8d3c0f9a01aff52491a3 (diff)
downloadciigo-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.mod3
1 files changed, 3 insertions, 0 deletions
diff --git a/go.mod b/go.mod
index 846549e..36ac941 100644
--- a/go.mod
+++ b/go.mod
@@ -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
)