gopkg.in/alecthomas/gometalinter.v3@v3.0.0/_linters/src/github.com/kisielk/gotool/go13.go (about)

     1  // +build !go1.4
     2  
     3  package gotool
     4  
     5  import (
     6  	"go/build"
     7  	"path/filepath"
     8  	"runtime"
     9  )
    10  
    11  var gorootSrc = filepath.Join(runtime.GOROOT(), "src", "pkg")
    12  
    13  func shouldIgnoreImport(p *build.Package) bool {
    14  	return true
    15  }