We have been stalled on ESLint 3.8.0 for some time. Current ESLint is 3.13.0. We have been unable to upgrade because of more aggressive reporting on some rules, including indentation. ESLint configuration options and bugfixes are now such that we can reasonably upgrade. PR-URL: https://github.com/nodejs/node/pull/10561 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
41 lines
1 KiB
JavaScript
41 lines
1 KiB
JavaScript
/**
|
|
* @fileoverview JSLint XML reporter
|
|
* @author Ian Christian Myers
|
|
*/
|
|
"use strict";
|
|
|
|
const xmlEscape = require("../util/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;
|
|
};
|