Two issues
1. go.mod specifies go 1.25.0
go.mod:3 — Go 1.25.0 is not yet released. This prevents users on current Go versions from using the library.
2. .golangci.yml disables many linters with TODO comments
Many linters are disabled with # TODO: Enable comments: dupl, gocognit, goconst, exhaustruct, stylecheck, testpackage, paralleltest. These represent deferred quality improvements.
Suggested fix
- Target the latest stable Go version in go.mod.
- Track the disabled linters in an issue and enable them incrementally.
Two issues
1. go.mod specifies go 1.25.0
go.mod:3— Go 1.25.0 is not yet released. This prevents users on current Go versions from using the library.2. .golangci.yml disables many linters with TODO comments
Many linters are disabled with
# TODO: Enablecomments:dupl,gocognit,goconst,exhaustruct,stylecheck,testpackage,paralleltest. These represent deferred quality improvements.Suggested fix