You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cat f.go
package p
func f() {
var (
i int
)
}
$ cat f.go | gofumpt
package p
func f() {
var i int
}
$ cat f.go | gofumpt | gofumpt
package p
func f() {
var i int
}
One shouldn't require multiple runs of gofumpt to get the desired outcome. We should fix this edge case.
The text was updated successfully, but these errors were encountered:
One shouldn't require multiple runs of gofumpt to get the desired outcome. We should fix this edge case.
The text was updated successfully, but these errors were encountered: