summaryrefslogtreecommitdiff
path: root/tools/eslint/lib/formatters/compact.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/lib/formatters/compact.js')
-rw-r--r--tools/eslint/lib/formatters/compact.js53
1 files changed, 53 insertions, 0 deletions
diff --git a/tools/eslint/lib/formatters/compact.js b/tools/eslint/lib/formatters/compact.js
new file mode 100644
index 0000000000..b7c2fc7e25
--- /dev/null
+++ b/tools/eslint/lib/formatters/compact.js
@@ -0,0 +1,53 @@
+/**
+ * @fileoverview Compact reporter
+ * @author Nicholas C. Zakas
+ */
+"use strict";
+
+//------------------------------------------------------------------------------
+// Helper Functions
+//------------------------------------------------------------------------------
+
+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 += "line " + (message.line || 0);
+ output += ", col " + (message.column || 0);
+ output += ", " + getMessageType(message);
+ output += " - " + message.message;
+ output += message.ruleId ? " (" + message.ruleId + ")" : "";
+ output += "\n";
+
+ });
+
+ });
+
+ if (total > 0) {
+ output += "\n" + total + " problem" + (total !== 1 ? "s" : "");
+ }
+
+ return output;
+};