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

..03-May-2022-

benchmark/parse/H13-Jul-2021-

blog/H13-Jul-2021-

cmd/H13-Jul-2021-

container/intsets/H13-Jul-2021-

copyright/H13-Jul-2021-

cover/H13-Jul-2021-

go/H13-Jul-2021-

godoc/H13-Jul-2021-

gopls/H13-Jul-2021-

imports/H13-Jul-2021-

internal/H13-Jul-2021-

playground/H13-Jul-2021-

present/H13-Jul-2021-

refactor/H13-Jul-2021-

txtar/H13-Jul-2021-

.gitattributesH A D13-Jul-2021345

.gitignoreH A D13-Jul-202185

.prettierrcH A D13-Jul-202151

AUTHORSH A D13-Jul-2021173

CONTRIBUTING.mdH A D13-Jul-2021913

CONTRIBUTORSH A D13-Jul-2021170

LICENSEH A D13-Jul-20211.4 KiB

PATENTSH A D13-Jul-20211.3 KiB

README.mdH A D13-Jul-20211.3 KiB

codereview.cfgH A D13-Jul-202121

go.modH A D13-Jul-2021323

go.sumH A D13-Jul-20212.8 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