Sha256: 093ae0bc666275b62b7fc54a676de79b167e7446827b1f0007af5677f9e7f44d
Contents?: true
Size: 743 Bytes
Versions: 37
Compression:
Stored size: 743 Bytes
Contents
<div onClick="toggle('ignored_table');"> <h2><%= warnings.length %> Ignored Warnings (click to see them)</h2 ></div> <div> <table style="display:none" id="ignored_table"> <thead> <tr> <th>Confidence</th> <th>File</th> <th>Warning Type</th> <th>CWE ID</th> <th>Message</th> <th>Note</th> </tr> </thead> <tbody> <% warnings.each do |warning| %> <tr> <td><%= warning['Confidence']%></td> <td><%= warning['File']%></td> <td><%= warning['Warning Type']%></td> <td><%= warning['CWE ID']%></td> <td><%= warning['Message']%></td> <td><%= warning['Note']%></td> </tr> <% end %> </tbody> </table> </div>
Version data entries
37 entries across 37 versions & 3 rubygems