woodpecker/vendor/github.com/quasilyte/go-ruleguard/ruleguard/bundle.go
Lukas c28f7cb29f
Add golangci-lint (#502)
Initial part of #435
2021-11-14 21:01:54 +01:00

19 lines
385 B
Go

package ruleguard
import (
"path/filepath"
"github.com/quasilyte/go-ruleguard/internal/golist"
)
func findBundleFiles(pkgPath string) ([]string, error) {
pkg, err := golist.JSON(pkgPath)
if err != nil {
return nil, err
}
files := make([]string, 0, len(pkg.GoFiles))
for _, f := range pkg.GoFiles {
files = append(files, filepath.Join(pkg.Dir, f))
}
return files, nil
}