Open
Description
What version of Go are you using (go version
)?
$ go version go version go1.13 darwin/amd64
Does this issue reproduce with the latest release?
govim is using commit f13409bb
, which is pretty new, and it reproduces
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="/Users/llimllib/go/bin" GOCACHE="/Users/llimllib/Library/Caches/go-build" GOENV="/Users/llimllib/Library/Application Support/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GONOPROXY="" GONOSUMDB="" GOOS="darwin" GOPATH="/Users/llimllib/go" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/local/Cellar/go/1.13/libexec" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/local/Cellar/go/1.13/libexec/pkg/tool/darwin_amd64" GCCGO="gccgo" AR="ar" CC="clang" CXX="clang++" CGO_ENABLED="1" GOMOD="/Users/llimllib/code/tools-golang/go.mod" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/r4/mc760j7j6xjdgr5p5hxk_xrw0000gq/T/go-build877572449=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
I don't know how to use gopls
directly, so here's how to reproduce through govim
- Create a directory
- Create a
staticcheck.conf
file with these contents:
checks = ["all", "-ST1005"]
- Create a main.go file:
package main
import "fmt"
func main() error {
return fmt.Errorf("This capitalized error should be ignored but isn't")
}
- Note that running
staticcheck .
orstaticcheck main.go
do not raise any errors - Turn on vim, with govim installed and staticcheck enabled via
call govim#config#Set("Staticcheck", 1)
- Note that govim flags error
ST1005
on line 6
Reading the gopls logs from govim shows:
[Trace - 10:10:46.572 AM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///private/tmp/govim-bug/main.go","version":1,"diagnostics":[{"range":{"start":{"line":5,"character":18},"end":{"line":5,"character":18}},"severity":2,"source":"ST1005","message":"error strings should not be capitalized","tags":[1]}]}
As you can see from the config, ST1005
ought to be ignored for this file.
(I feel pretty certain that govim
isn't doing anything wrong in how it launches or communicates with gopls
? But if I've got this error filed on the wrong side of that divide, I apologize)
What did you expect to see?
No ST1005 errors flagged on main.go
What did you see instead?
An ST1005 error flagged on main.go