Skip to content

Commit

Permalink
Disable framework and tooling discovery
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Lucidi <slucidi@redhat.com>
  • Loading branch information
mansam committed Jun 20, 2024
1 parent f3a92d5 commit 85f11fb
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions cmd/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,6 @@ func tags(language alizer.Language, cats map[string]uint) (tags []api.Tag) {
Name: language.Name,
Category: api.Ref{ID: cats[CategoryLanguage]},
})
for _, f := range language.Frameworks {
tags = append(tags, api.Tag{
Name: f,
Category: api.Ref{ID: cats[CategoryFramework]},
})
}
for _, t := range language.Tools {
tags = append(tags, api.Tag{
Name: t,
Category: api.Ref{ID: cats[CategoryTooling]},
})
}
return
}

Expand Down

0 comments on commit 85f11fb

Please sign in to comment.