mirror of
https://github.com/golang/go
synced 2024-11-18 09:14:43 -07:00
e2cc5a1191
Regtests are slow, and make `go test ./internal/lsp/...` slow. Also, having them in the tools module means they can't use staticcheck, go-diff, etc. Move them to the gopls module. This means that they're annoying to work with unless you open the gopls module, but hopefully that annoyance will be gone soon when we support multi-module workspaces. For golang/go#39384 Change-Id: Ib99c994ffdac56d4da13af981ad397a90a7523af Reviewed-on: https://go-review.googlesource.com/c/tools/+/252682 Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
15 lines
349 B
Modula-2
15 lines
349 B
Modula-2
module golang.org/x/tools/gopls
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/sergi/go-diff v1.1.0
|
|
golang.org/x/tools v0.0.0-20200828161849-5deb26317202
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
|
|
honnef.co/go/tools v0.0.1-2020.1.5
|
|
mvdan.cc/gofumpt v0.0.0-20200802201014-ab5a8192947d
|
|
mvdan.cc/xurls/v2 v2.2.0
|
|
)
|
|
|
|
replace golang.org/x/tools => ../
|