Permalink
Cannot retrieve contributors at this time
41 lines (29 sloc)
1.03 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @fileoverview JSLint XML reporter | |
* @author Ian Christian Myers | |
*/ | |
"use strict"; | |
const xmlEscape = require("../xml-escape"); | |
//------------------------------------------------------------------------------ | |
// Public Interface | |
//------------------------------------------------------------------------------ | |
module.exports = function(results) { | |
let output = ""; | |
output += "<?xml version=\"1.0\" encoding=\"utf-8\"?>"; | |
output += "<jslint>"; | |
results.forEach(result => { | |
const messages = result.messages; | |
output += `<file name="${result.filePath}">`; | |
messages.forEach(message => { | |
output += [ | |
`<issue line="${message.line}"`, | |
`char="${message.column}"`, | |
`evidence="${xmlEscape(message.source || "")}"`, | |
`reason="${xmlEscape(message.message || "")}${message.ruleId ? ` (${message.ruleId})` : ""}" />` | |
].join(" "); | |
}); | |
output += "</file>"; | |
}); | |
output += "</jslint>"; | |
return output; | |
}; |