Permalink
Cannot retrieve contributors at this time
60 lines (45 sloc)
1.66 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/checkstyle.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 CheckStyle XML reporter | |
* @author Ian Christian Myers | |
*/ | |
"use strict"; | |
const xmlEscape = require("../xml-escape"); | |
//------------------------------------------------------------------------------ | |
// Helper Functions | |
//------------------------------------------------------------------------------ | |
/** | |
* Returns the severity of warning or error | |
* @param {Object} message message object to examine | |
* @returns {string} severity level | |
* @private | |
*/ | |
function getMessageType(message) { | |
if (message.fatal || message.severity === 2) { | |
return "error"; | |
} | |
return "warning"; | |
} | |
//------------------------------------------------------------------------------ | |
// Public Interface | |
//------------------------------------------------------------------------------ | |
module.exports = function(results) { | |
let output = ""; | |
output += "<?xml version=\"1.0\" encoding=\"utf-8\"?>"; | |
output += "<checkstyle version=\"4.3\">"; | |
results.forEach(result => { | |
const messages = result.messages; | |
output += `<file name="${xmlEscape(result.filePath)}">`; | |
messages.forEach(message => { | |
output += [ | |
`<error line="${xmlEscape(message.line || 0)}"`, | |
`column="${xmlEscape(message.column || 0)}"`, | |
`severity="${xmlEscape(getMessageType(message))}"`, | |
`message="${xmlEscape(message.message)}${message.ruleId ? ` (${message.ruleId})` : ""}"`, | |
`source="${message.ruleId ? xmlEscape(`eslint.rules.${message.ruleId}`) : ""}" />` | |
].join(" "); | |
}); | |
output += "</file>"; | |
}); | |
output += "</checkstyle>"; | |
return output; | |
}; |