Jérôme Laforge

Results 14 issues of Jérôme Laforge

Hello, In order to be correctly supported by go.mod, could you use [semantic version](https://semver.org)? Many thx

In order to avoid data race on `GetMonitor()`, gin-metrics has to use `sync.Once` or `sync.Mutex`. For example with `sync.Once`: ```go var ( defaultDuration = []float64{0.1, 0.3, 1.2, 5, 10} monitor...

If next middle ware panics then `m.ginMetricHandle` is not executed. I known in this case response can not be correctly set, but at least can we count it and all...

is it possible to update this [godoc](https://github.com/golang/oauth2/blob/81ed05c6b58c5509b83ac75450e38d97242e7168/oauth2.go#L328) by replacing `golang.org/x/net/context's` by `context's`?

Could you use the correct format for deprecated API. According to https://github.com/golang/go/wiki/Deprecated, the deprecated API must follow this. Plz find an example of resolve below ```diff diff --git a/decimal.go b/decimal.go...

### Your feature request related to a problem? Please describe. According to you, is it possible to add checklock from gvisor https://github.com/google/gvisor/tree/master/tools/checklocks in golangci-lint? ### Describe the solution you'd like....

enhancement
linter: new

Hello, bodyclose doesn't detect body not closed when we don't use defer. With this two case: First one is not problematic (because we can easily use `defer res.Body.Close()`: ```go func...

With v0.5.0, `xml.Unmarshal` returns an error: ```go r := soap.SOAPEnvelope{ Body: soap.SOAPBody{ Content: &InfoRequest{}, }, } if err := xml.Unmarshal(buf, &r); err != nil { return nil, err } ```...

It is not possible to define for each intellij project their own `Project Root`that is contained .golangci config file (each project has own golangci config file). If I modify the...

According to https://github.com/satori/go.uuid/issues/73 and it is no longer recommended by https://github.com/avelino/awesome-go#uuid. Could you switch to https://github.com/gofrs/uuid instead?