UNPKG

gulp-jshint

Version:
18 lines (15 loc) 521 B
var jshintcli = require('jshint/src/cli'); var fileIgnored = require('./fileIgnored'); var stream = require('./stream'); module.exports = function extract(when) { when = when || 'auto'; return stream(function (file, cb) { fileIgnored(file, function (err, ignored) { if (err) return cb(err); if (ignored) return cb(null, file); file.jshint = file.jshint || {}; file.jshint.extracted = jshintcli.extract(file.contents.toString('utf8'), when); return cb(null, file); }); }); };