• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benchmark/parse/H06-Jan-2021-341292

blog/H06-Jan-2021-610504

cmd/H06-Jan-2021-33,41624,919

container/intsets/H06-Jan-2021-2,0631,532

cover/H06-Jan-2021-524459

go/H06-Jan-2021-86,72060,896

godoc/H06-Jan-2021-13,85810,357

gopls/H06-Jan-2021-13,89610,603

imports/H06-Jan-2021-7848

internal/H06-Jan-2021-103,18779,368

playground/H06-Jan-2021-690540

present/H06-Jan-2021-2,9792,084

refactor/H06-Jan-2021-7,1885,138

txtar/H06-Jan-2021-249180

.gitattributesH A D06-Jan-2021345 119

.gitignoreH A D06-Jan-202185 32

.prettierrcH A D06-Jan-202151 44

AUTHORSH A D06-Jan-2021173 43

CONTRIBUTING.mdH A D06-Jan-2021913 2717

CONTRIBUTORSH A D06-Jan-2021170 43

LICENSEH A D06-Jan-20211.4 KiB2824

PATENTSH A D06-Jan-20211.3 KiB2320

README.mdH A D06-Jan-20211.3 KiB3924

codereview.cfgH A D06-Jan-202121 21

go.modH A D06-Jan-2021270 129

go.sumH A D06-Jan-20212.5 KiB2625

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