hack,internal: fix staticcheck

The most recent version of staticcheck drops the "--ignore" flag in
favor of inline ignore directives, so we need to use those or fix on
the older version.

Good news is two of our ignore directives are now no longer needed.

Updates dominikh/go-tools#514.
Updates dominikh/go-tools#515.
Fixes #2178.
This commit is contained in:
Kevin Burke 2019-06-13 09:16:50 -07:00
Родитель 9fa5e4a5fc
Коммит 23b2e86204
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 69A62C606176D459
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -9,4 +9,4 @@ set -e
PKGS=$(go list ./... | grep -vF /vendor/)
go vet $PKGS
golint $PKGS
staticcheck -ignore "github.com/golang/dep/internal/test/test.go:U1000 github.com/golang/dep/gps/prune.go:U1000 github.com/golang/dep/manifest.go:U1000" $PKGS
staticcheck $PKGS

Просмотреть файл

@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//lint:file-ignore U1000 unused fns we might want to use later.
package test
import (