This tool merges require blocks in go.mod files since go mod tidy doesn't do it. It also separates the direct
and indirect dependencies and sorts them alphabetically.
| Before | After |
|---|---|
![]() |
![]() |
go install github.com/PaddleHQ/modfmt@latestThe binary outputs the formatted go.mod to standard output. In your Go project root, run:
go run github.com/PaddleHQ/modfmt@latestYou can also replace the go.mod file in place with the --replace flag:
go run github.com/PaddleHQ/modfmt@latest --replaceI hacked this tool together using the official parser in less than 2 hours and unsurprisingly there are a few drawbacks with this:
requireblocks come last after using this. Can be fixed with little effort I think?- Comments in
requireblocks are not preserved.

