microsoft / sarif-tools

A set of Python command line tools for working with SARIF files produced by code analysis tools
MIT License
76 stars 19 forks source link

Code and description are combined in the Code column in the records and CSV #27

Closed balgillo closed 8 months ago

balgillo commented 9 months ago

The Code column contains both the error code and the description, e.g. DS126186 Disabled certificate validation, in the record dict and in the CSV output.

This is prematurely combining information that we might want to keep separate in some use cases.

Change the tools to keep these fields separate and only combine them at the output stage if desired.