fix(go-essentials): remove guru (deprecated)

This commit is contained in:
AJ ONeal
2024-09-13 01:54:36 -06:00
parent e3e61ca256
commit 13ac3e32fc
3 changed files with 0 additions and 9 deletions

View File

@@ -17,7 +17,6 @@ including:
- [godoc](https://pkg.go.dev/golang.org/x/tools/cmd/godoc)
- [gopls](https://pkg.go.dev/golang.org/x/tools/gopls)
- [guru](https://pkg.go.dev/golang.org/x/tools/cmd/guru)
- [golint](https://pkg.go.dev/golang.org/x/lint/golint)
- [goimports](https://pkg.go.dev/golang.org/x/tools/cmd/goimports)
- [gomvpkg](https://pkg.go.dev/golang.org/x/tools/cmd/gomvpkg)

View File

@@ -16,10 +16,6 @@ Write-Output ""
Write-Output gopls
& go install golang.org/x/tools/gopls@latest
Write-Output ""
Write-Output guru
& go install golang.org/x/tools/guru@latest
Write-Output ""
Write-Output golint
& go install golang.org/x/lint/golint@latest

View File

@@ -44,10 +44,6 @@ __run_go_essentials() {
echo gopls
go "${my_install}" golang.org/x/tools/gopls@latest > /dev/null #2>/dev/null
echo ""
echo guru
go "${my_install}" golang.org/x/tools/cmd/guru@latest > /dev/null #2>/dev/null
echo ""
echo golint
go "${my_install}" golang.org/x/lint/golint@latest > /dev/null #2>/dev/null