A+C: delete AUTHORS and CONTRIBUTORS

In 2009, Google's open-source lawyers asked us to create the AUTHORS
file to define "The Go Authors", and the CONTRIBUTORS file was in
keeping with open source best practices of the time.

Re-reviewing our repos now in 2022, the open-source lawyers are
comfortable with source control history taking the place of the
AUTHORS file, and most open source projects no longer maintain
CONTRIBUTORS files.

To ease maintenance, remove AUTHORS and CONTRIBUTORS from all repos.

For #53961.

Change-Id: Ib9ff4868fc4d4545e74812503976f21327d40404
Reviewed-on: https://go-review.googlesource.com/c/sublime-build/+/419102
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: David Chase <drchase@google.com>
2 files changed
tree: 7710ba08ecb49f4190ad2db1bdef3d071be1d78a
  1. dev/
  2. docs/
  3. .gitignore
  4. .pep8
  5. changelog.md
  6. CONTRIBUTING.md
  7. Default.sublime-commands
  8. dependencies.json
  9. Go.sublime-build
  10. Golang Build Output.tmLanguage
  11. golang_build.py
  12. LICENSE
  13. PATENTS
  14. readme.md
readme.md

Golang Build

Golang Build is a Sublime Text package for compiling Go projects. It provides integration between Sublime Text and the command line go tool.

The package consists of the following features:

  • A Sublime Text build system for executing:
    • go build
    • go run
    • go install
    • go test to run Tests or Benchmarks
    • go clean
    • Cross-compilation using go build with GOOS and GOARCH
  • Sublime Text command palette commands to:
    • Execute go get
    • Open a terminal into a Go workspace

Installation

The Golang Build package is installed by using Package Control.

  • If Package Control is not installed, follow the Installation Instructions
  • Open the Sublime Text command palette and run the Package Control: Install Package command
  • Type Golang Build and select the package to perform the installation

Documentation

End User

Contributor