You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The severity level exported in checkstyle xml format is the pint severity (pint code) / pint severity levels). So Bug and Informational are exported as severity level values in the checkstyle xml.
On the other hand the defined severity levels for checkstyle are: ignore, info, warning and error.
This requires some post pint modifications on the resulting pint checkstyle xml to be able to use the xml as input for other tools, e.g. reviewdog. As these tools expect the checkstyle severity levels and are unable to handle to pint severity levels.
My suggestion is to add a simple severity mapping in the checkstyle export:
pint severity
checkstyle severity
Bug
error
Warning
warning
Informational
info
The text was updated successfully, but these errors were encountered:
The severity level exported in checkstyle xml format is the pint severity (pint code) / pint severity levels). So
Bug
andInformational
are exported as severity level values in the checkstyle xml.Example:
On the other hand the defined severity levels for checkstyle are: ignore, info, warning and error.
This requires some post pint modifications on the resulting pint checkstyle xml to be able to use the xml as input for other tools, e.g. reviewdog. As these tools expect the checkstyle severity levels and are unable to handle to pint severity levels.
My suggestion is to add a simple severity mapping in the checkstyle export:
The text was updated successfully, but these errors were encountered: