I'm using JetBrains GoLand IDE however I assume the answer would be common for any JetBrains IDE such as IntelliJ etc.
I've configured file watchers for:
go fmt
, golint
and go test
go fmt
does not have output so it works fine.
golint
and go test both have output. If I enable just one of them I see that output. If I enable both I see the output of golint
for only a split second then it is replaced by the output of go test
So I will never actually be able to read the output of golint
For now I solved this by making go test
only display output on error, if it errors I figure I do not yet care about the output of golint
but thought I'd ask anyway.