remove prealloc nolint rule in catalogers

Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
This commit is contained in:
Alex Goodman 2021-03-23 12:56:00 -04:00
parent d420368ba9
commit 929b78efbf
No known key found for this signature in database
GPG key ID: 5CB45AE22BAB7EA7
3 changed files with 0 additions and 3 deletions

View file

@ -73,7 +73,6 @@ func (pres *TablePresenter) Present(output io.Writer) error {
func removeDuplicateRows(items [][]string) [][]string {
seen := map[string][]string{}
// nolint:prealloc
var result [][]string
for _, v := range items {

View file

@ -30,7 +30,6 @@ func (c *PackageCataloger) Name() string {
// Catalog is given an object to resolve file references and content, this function returns any discovered Packages after analyzing python egg and wheel installations.
func (c *PackageCataloger) Catalog(resolver source.FileResolver) ([]pkg.Package, error) {
// nolint:prealloc
var fileMatches []source.Location
for _, glob := range []string{eggMetadataGlob, wheelMetadataGlob, eggFileMetadataGlob} {

View file

@ -53,7 +53,6 @@ var postProcessors = map[string]postProcessor{
}
func processList(s string) []string {
// nolint:prealloc
var results []string
for _, item := range strings.Split(s, ",") {
results = append(results, strings.Trim(item, "\" "))