Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
benchmark/parse/ | H | 19-Jan-2021 | - | |||
blog/ | H | 19-Jan-2021 | - | |||
cmd/ | H | 19-Jan-2021 | - | |||
container/intsets/ | H | 19-Jan-2021 | - | |||
copyright/ | H | 19-Jan-2021 | - | |||
cover/ | H | 19-Jan-2021 | - | |||
go/ | H | 19-Jan-2021 | - | |||
godoc/ | H | 19-Jan-2021 | - | |||
gopls/ | H | 19-Jan-2021 | - | |||
imports/ | H | 19-Jan-2021 | - | |||
internal/ | H | 19-Jan-2021 | - | |||
playground/ | H | 19-Jan-2021 | - | |||
present/ | H | 19-Jan-2021 | - | |||
refactor/ | H | 19-Jan-2021 | - | |||
txtar/ | H | 19-Jan-2021 | - | |||
.gitattributes | H A D | 19-Jan-2021 | 345 | |||
.gitignore | H A D | 19-Jan-2021 | 85 | |||
.prettierrc | H A D | 19-Jan-2021 | 51 | |||
AUTHORS | H A D | 19-Jan-2021 | 173 | |||
CONTRIBUTING.md | H A D | 19-Jan-2021 | 913 | |||
CONTRIBUTORS | H A D | 19-Jan-2021 | 170 | |||
LICENSE | H A D | 19-Jan-2021 | 1.4 KiB | |||
PATENTS | H A D | 19-Jan-2021 | 1.3 KiB | |||
README.md | H A D | 19-Jan-2021 | 1.3 KiB | |||
codereview.cfg | H A D | 19-Jan-2021 | 21 | |||
go.mod | H A D | 19-Jan-2021 | 323 | |||
go.sum | H A D | 19-Jan-2021 | 2.7 KiB |
README.md
1# Go Tools 2 3[![PkgGoDev](https://pkg.go.dev/badge/golang.org/x/tools)](https://pkg.go.dev/golang.org/x/tools) 4 5This subrepository holds the source for various packages and tools that support 6the Go programming language. 7 8Some of the tools, `godoc` and `vet` for example, are included in binary Go 9distributions. 10 11Others, including the Go `guru` and the test coverage tool, can be fetched with 12`go get`. 13 14Packages include a type-checker for Go and an implementation of the 15Static Single Assignment form (SSA) representation for Go programs. 16 17## Download/Install 18 19The easiest way to install is to run `go get -u golang.org/x/tools/...`. You can 20also manually git clone the repository to `$GOPATH/src/golang.org/x/tools`. 21 22## JS/CSS Formatting 23 24This repository uses [prettier](https://prettier.io/) to format JS and CSS files. 25 26The version of `prettier` used is 1.18.2. 27 28It is encouraged that all JS and CSS code be run through this before submitting 29a change. However, it is not a strict requirement enforced by CI. 30 31## Report Issues / Send Patches 32 33This repository uses Gerrit for code changes. To learn how to submit changes to 34this repository, see https://golang.org/doc/contribute.html. 35 36The main issue tracker for the tools repository is located at 37https://github.com/golang/go/issues. Prefix your issue with "x/tools/(your 38subdir):" in the subject line, so it is easy to find. 39