Skip to content

Commit

Permalink
Suppress noise
Browse files Browse the repository at this point in the history
  • Loading branch information
antfie committed Mar 29, 2023
1 parent b9f7f0d commit 558c0dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions analyze_modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ func (data Data) analyzeModuleWarnings() {
formattedModuleName := strings.ToLower(module.Name)

for _, issue := range module.Issues {
if strings.HasPrefix(issue.Details, "Unsupported framework") {
continue
}

if issue.Details == "No supporting files or PDB files" {
if strings.HasSuffix(formattedModuleName, ".jar") ||
strings.HasSuffix(formattedModuleName, ".war") ||
Expand Down

0 comments on commit 558c0dc

Please sign in to comment.