-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdoc.go
91 lines (86 loc) · 2.72 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
binstale tells you whether the binaries in your GOPATH/bin are stale or up to date.
$ binstale -help
Usage: binstale [command names]
Example Output
This is an example of binstale usage.
$ binstale goimports
goimports
stale: golang.org/x/tools/cmd/goimports (newer dependency)
$ go install golang.org/x/tools/cmd/goimports
$ binstale goimports
goimports
up to date: golang.org/x/tools/cmd/goimports
$ binstale
Go-Package-Store
stale: github.com/shurcooL/Go-Package-Store (newer source file)
binstale
up to date: github.com/shurcooL/binstale
doc
(no source package found)
dump_args
stale: github.com/shurcooL/cmd/dump_args (build ID mismatch)
dump_httpreq
stale: github.com/shurcooL/cmd/dump_httpreq (build ID mismatch)
dupl
stale: github.com/mibk/dupl (build ID mismatch)
git-branches
stale: github.com/shurcooL/cmd/git-branches (build ID mismatch)
git-codereview
stale: golang.org/x/review/git-codereview (build ID mismatch)
go-find-references
stale: github.com/lukehoban/go-find-references (build ID mismatch)
go-outline
up to date: github.com/lukehoban/go-outline
gocode
up to date: github.com/nsf/gocode
godef
stale: github.com/rogpeppe/godef (build ID mismatch)
godep
stale: github.com/tools/godep (build ID mismatch)
goexec
stale: github.com/shurcooL/goexec (build ID mismatch)
goimporters
stale: github.com/shurcooL/cmd/goimporters (build ID mismatch)
goimportgraph
stale: github.com/shurcooL/cmd/goimportgraph (build ID mismatch)
goimports
up to date: golang.org/x/tools/cmd/goimports
golint
stale: github.com/golang/lint/golint (build ID mismatch)
gomobile
stale: golang.org/x/mobile/cmd/gomobile (build ID mismatch)
gomvpkg
stale: golang.org/x/tools/cmd/gomvpkg (build ID mismatch)
gopherjs
stale: github.com/gopherjs/gopherjs (build ID mismatch)
gorename
stale: golang.org/x/tools/cmd/gorename (build ID mismatch)
gorepogen
stale: github.com/shurcooL/cmd/gorepogen (build ID mismatch)
gostatus
stale: github.com/shurcooL/gostatus (build ID mismatch)
gostringer
stale: github.com/sourcegraph/gostringer (build ID mismatch)
govers
stale: github.com/rogpeppe/govers (cannot stat install target)
gtdo
stale: github.com/shurcooL/gtdo (build ID mismatch)
implements
up to date: honnef.co/go/implements
jsonfmt
up to date: github.com/shurcooL/cmd/jsonfmt
markdownfmt
up to date: github.com/shurcooL/markdownfmt
staticcheck
stale: honnef.co/go/staticcheck/cmd/staticcheck (build ID mismatch)
stringer
stale: golang.org/x/tools/cmd/stringer (build ID mismatch)
unconvert
up to date: github.com/mdempsky/unconvert
unused
stale: honnef.co/go/unused/cmd/unused (build ID mismatch)
vfsgendev
up to date: github.com/shurcooL/vfsgen/cmd/vfsgendev
*/
package main