Ryan M
Ryan M
I would like to use this tool to format the imports for every file in my project. To do this, I have to write a script something similar to ```...
Some plugins need to know the version of the project they are operating on. For example, the [gode-conjure-plugin](https://github.com/palantir/godel-conjure-plugin) needs this to determine the artifact to publish. Suggestion is to elevate...
Great plugin! Given a file with no imports something like: ``` // Copyright 2017 Some company const x = "foo"; ``` If I let the plugin automatically import a type,...
Would you consider releasing or tagging go-metrics? We use [dep](https://github.com/golang/dep,) and a lack of tags makes it slightly hard to work with this library (we are forced to specify the...
Wouldn't that be neat?
the tssg assumes that query params are always optional. That's not always the case
I have my tslint.json under a `config` folder in my project, seems like the atom linter is expecting it to be at the root. I don't see any configuration for...
## Feature Request A common pattern is to run background tasks (goroutines) from an init server function (e.g. a controller). When these background tasks fail, (consider the case where due...
# Issue I would expect the following ``` func Test(t *testing.T) { err:=retry.Do( context.Background(), func() error { fmt.Println(time.Now()) return errors.New("some errors") }, retry.WithInitialBackoff(10*time.Second), retry.WithMultiplier(1), retry.WithMaxAttempts(5), ) require.NoError(t,err) } ``` To...
It would be very nice if the ManagerOptions https://github.com/kubernetes-sigs/controller-runtime/blob/main/pkg/manager/manager.go#L101 was more easily printable. Example use case: logging on startup to be sure of what config is used. Using fmt.Sprintf("%#v", options)...