When I run gofumpt or gofumports over our code, the diffs are huge because it regroups all the imports. For instance: ``` diff @@ -7,11 +7,10 @@ import ( "encoding/binary" "errors" "hash" + "liftoff/go/bitset" "math" "github.com/cespare/xxhash" - - "liftoff/go/bitset" ) ``` This happens with gofumpt and with gofumports executed with ``` gofumpt -w . gofumports -local 'liftoff/' -w . ``` but not with gofmt or goimports executed with ``` gofmt -w . goimports -local 'liftoff/' -w . ```