gulp-gjslint
Version:
Gulp task for running gjslint, the Google Closure linter.
20 lines (16 loc) • 317 B
JavaScript
;
var PluginError = require('gulp-util').PluginError;
/**
* @param {String} namespace
* @return {Function}
*/
var errorFactory = function(namespace)
{
return function(message) {
return new PluginError(namespace, message);
};
};
/**
* @type {errorFactory}
*/
module.exports = errorFactory;