Skip to content

Instantly share code, notes, and snippets.

@vaab
Created September 20, 2012 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vaab/3754379 to your computer and use it in GitHub Desktop.
Save vaab/3754379 to your computer and use it in GitHub Desktop.
JSLint/JSHint emacs reporter
/*jshint node: true */
var reporter_name = "jhlint";
module.exports = {
reporter: function (results, data) {
"use strict";
var str = '',
errors = [];
data.forEach(function (data) {
var file = data.file;
if (data.errors) {
data.errors.forEach(function (error) {
// completing error
error.file = file;
errors.push(error);
});
}
if (data.implieds) {
data.implieds.forEach(function (error) {
// completing global
error.id = '(warning)';
error.reason = 'Implied global \'' + error.name + '\'';
error.file = file;
errors.push(error);
});
}
if (data.unused) {
data.unused.forEach(function (error) {
error.id = '(warning)';
error.reason = 'Unused variable \'' + error.name + '\'';
error.file = file;
errors.push(error);
});
}
});
errors.forEach(function (error) {
var file = error.file,
error_id;
if (error.id === '(error)') {
error_id = 'ERROR';
} else {
error_id = 'WARNING';
}
str += file + ':' + error.line + ': ' + error_id +
': (' + reporter_name + ') ' + error.reason + '\n';
});
if (str) {
process.stdout.write(str + "\n");
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment