mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
/**
|
|
* @fileoverview unix-style formatter.
|
|
* @author oshi-shinobu
|
|
* @copyright 2015 oshi-shinobu. All rights reserved.
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Helper Functions
|
|
//------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Returns a canonical error level string based upon the error message passed in.
|
|
* @param {object} message Individual error message provided by eslint
|
|
* @returns {String} Error level string
|
|
*/
|
|
function getMessageType(message) {
|
|
if (message.fatal || message.severity === 2) {
|
|
return "Error";
|
|
} else {
|
|
return "Warning";
|
|
}
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(results) {
|
|
|
|
var output = "",
|
|
total = 0;
|
|
|
|
results.forEach(function(result) {
|
|
|
|
var messages = result.messages;
|
|
total += messages.length;
|
|
|
|
messages.forEach(function(message) {
|
|
|
|
output += result.filePath + ":";
|
|
output += (message.line || 0) + ":";
|
|
output += (message.column || 0) + ":";
|
|
output += " " + message.message + " ";
|
|
output += "[" + getMessageType(message) +
|
|
(message.ruleId ? "/" + message.ruleId : "") + "]";
|
|
output += "\n";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
if (total > 0) {
|
|
output += "\n" + total + " problem" + (total !== 1 ? "s" : "");
|
|
}
|
|
|
|
return output;
|
|
};
|
|
|