go.mod: restore staticcheck module, make it stick around, go mod tidy

It kept coming & going as different people ran go mod tidy and others
ran staticcheck.

Make it stop going away with go mod tidy by adding a dep to it.
This commit is contained in:
Brad Fitzpatrick
2020-07-02 22:52:42 -07:00
parent 6c70cf7222
commit 7883e5c5e7
3 changed files with 29 additions and 8 deletions

1
go.mod
View File

@@ -28,6 +28,7 @@ require (
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
golang.org/x/sys v0.0.0-20200501052902-10377860bb8e
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
honnef.co/go/tools v0.0.1-2020.1.4
inet.af/netaddr v0.0.0-20200702150737-4591d218f82c
rsc.io/goversion v1.2.0
)