We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d47751d commit 87a7569Copy full SHA for 87a7569
Build.ps1
@@ -23,7 +23,7 @@ function RunInspectCode {
23
$issueType = $xml.report.IssueTypes.SelectSingleNode("IssueType[@Id='$($_.TypeId)']")
24
$severity = $_.Severity ?? $issueType.Severity
25
26
- Write-Output "[$severity] $($_.File):$($_.Line) $($_.Message)"
+ Write-Output "[$severity] $($_.File):$($_.Line) $($_.TypeId): $($_.Message)"
27
})
28
29
}
JetBrainsInspectCodeTransform.xslt
@@ -25,6 +25,7 @@
<tr>
<th>File</th>
<th>Line Number</th>
+ <th>Type</th>
<th>Message</th>
30
</tr>
31
<xsl:for-each select="key('ISSUETYPES',@Id)">
@@ -35,6 +36,9 @@
35
36
<td>
37
<xsl:value-of select="@Line"/>
38
</td>
39
+ <td>
40
+ <xsl:value-of select="@TypeId"/>
41
+ </td>
42
43
<xsl:value-of select="@Message"/>
44
0 commit comments