microsoft / sarif-visualstudio-extension

SARIF Microsoft Visual Studio Viewer Extension
MIT License
46 stars 19 forks source link

Offer .sarif and .sarif-external-properties file templates #89

Open ghost opened 5 years ago

ghost commented 5 years ago

Add options to File, New:

.sarif file, with initial contents

{
  "$schema": "https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json",
  "version": "2.1.0",
  "runs": [
    {
      "tool": {
        "driver": {
          "name": "Tool Name"
        }
      },
      "results": [
      ]
    }
  ]
}

.sarif-external-properties file, with initial contents

{
  "$schema": "https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-external-property-file-schema-2.1.0.json",
  "version": "2.1.0"

}
ghost commented 5 years ago

@michaelcfanning FYI