Dwayne Schultz

Results 5 issues of Dwayne Schultz

Great tool! Thanks for creating it! I would like to integrate gofumpt into my CI/CD pipeline so I want to know if there are changes to make. Maybe a command...

When using a decorator with `ResolveLocalPath` set to true with generics, the path of the generic type is returned as the package where the type is located. I think it...

Mock actually ends up being invalid. Interface: ``` go package foo import baz "bar" type Buz interface { Close() (baz.Thing) } ``` Generated a mock with `baz` prefixes but no...

We are trying to land the mock in a package other than where the interface is defined. `my_interface.go` ``` go package xyz //go:generate hel -o ../anotherpackage/mock_my_test.go -t MyInterface type MyInterface...