Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
benchmark/parse/ | H | 23-Jun-2021 | - | 341 | 292 | |
blog/ | H | 23-Jun-2021 | - | 610 | 504 | |
cmd/ | H | 23-Jun-2021 | - | 33,501 | 24,961 | |
container/intsets/ | H | 23-Jun-2021 | - | 2,066 | 1,532 | |
copyright/ | H | 23-Jun-2021 | - | 139 | 110 | |
cover/ | H | 23-Jun-2021 | - | 524 | 459 | |
go/ | H | 23-Jun-2021 | - | 91,681 | 63,779 | |
godoc/ | H | 23-Jun-2021 | - | 13,997 | 10,445 | |
gopls/ | H | 23-Jun-2021 | - | 14,106 | 10,825 | |
imports/ | H | 23-Jun-2021 | - | 78 | 48 | |
internal/ | H | 23-Jun-2021 | - | 116,956 | 89,319 | |
playground/ | H | 23-Jun-2021 | - | 673 | 516 | |
present/ | H | 23-Jun-2021 | - | 2,982 | 2,087 | |
refactor/ | H | 23-Jun-2021 | - | 7,141 | 5,124 | |
txtar/ | H | 23-Jun-2021 | - | 249 | 180 | |
.gitattributes | H A D | 23-Jun-2021 | 345 | 11 | 9 | |
.gitignore | H A D | 23-Jun-2021 | 85 | 3 | 2 | |
.prettierrc | H A D | 23-Jun-2021 | 51 | 4 | 4 | |
AUTHORS | H A D | 23-Jun-2021 | 173 | 4 | 3 | |
CONTRIBUTING.md | H A D | 23-Jun-2021 | 913 | 27 | 17 | |
CONTRIBUTORS | H A D | 23-Jun-2021 | 170 | 4 | 3 | |
LICENSE | H A D | 23-Jun-2021 | 1.4 KiB | 28 | 24 | |
PATENTS | H A D | 23-Jun-2021 | 1.3 KiB | 23 | 20 | |
README.md | H A D | 23-Jun-2021 | 1.3 KiB | 39 | 24 | |
codereview.cfg | H A D | 23-Jun-2021 | 21 | 2 | 1 | |
go.mod | H A D | 23-Jun-2021 | 323 | 13 | 10 | |
go.sum | H A D | 23-Jun-2021 | 2.8 KiB | 29 | 28 |
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