Codebase list golint / fresh-snapshots/main
New upstream snapshot. Debian Janitor 2 years ago
4 changed file(s) with 13 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 **NOTE:** Golint is [deprecated and frozen](https://github.com/golang/go/issues/38968).
1 There's no drop-in replacement for it, but tools such as [Staticcheck](https://staticcheck.io/)
2 and `go vet` should be used instead.
3
04 Golint is a linter for Go source code.
15
6 [![Go Reference](https://pkg.go.dev/badge/golang.org/x/lint.svg)](https://pkg.go.dev/golang.org/x/lint)
27 [![Build Status](https://travis-ci.org/golang/lint.svg?branch=master)](https://travis-ci.org/golang/lint)
38
49 ## Installation
0 golint (0.0+git20210508.6edffad-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Sun, 03 Oct 2021 17:27:07 -0000
5
06 golint (0.0+git20200130.910be7a-1) unstable; urgency=medium
17
28 * New upstream version 0.0+git20200130.910be7a
838838 "ServeHTTP": true,
839839 "String": true,
840840 "Write": true,
841 "Unwrap": true,
841842 }
842843
843844 // lintFuncDoc examines doc comments on functions and methods.
1313 func (T) ServeHTTP(w http.ResponseWriter, r *http.Request) {}
1414 func (T) Read(p []byte) (n int, err error) { return 0, nil }
1515 func (T) Write(p []byte) (n int, err error) { return 0, nil }
16 func (T) Unwrap(err error) error { return nil }