Oleg Kovalov

Results 332 comments of Oleg Kovalov

What is your `$GOPATH` ?

Try `GO111MODULE=auto go get -d github.com/dvyukov/go-fuzz-corpus` Sadly there is a 'problem' with fetching deps with `go get` and modules. UPD: `GO111MODULE=off` should work too, outside the `$GOPATH`. I'm trying to...

Looks like the template above is the most popular one: - what everyone have(stdlib) - what we use as a 3rd party - what we wrote - and some other...

Sorry for a late reply @mvdan but yeah, totally agree. Also agree that having an option on changing groups is not stable (I mean there is no 1 constant output,...

BTW, why not to check golang/go to see what is more popular 2-3 or 3-2 ? Quick regex shows that `cmd/go/internal/modcmd` and packages near it has something like: ```go import...

It's done in https://github.com/go-critic/go-critic Docs: https://go-critic.github.io/overview.html#paramTypeCombine-ref

To solve this (and bunch of other problems) I've created another JWT lib. Feel free to check it https://github.com/cristalhq/jwt

Woah, have missed your previous comment. So, my case was "I want to collect all the declarations in 1 HTML file". Suppose I've a Go module with 3 packages `foo`,...

Yep, well, there was a filter to skip mocks or few codegen packages. Agree, it can be long, but you've 1 doc which is super easy to grep and host...