UNPKG

generator-jdm

Version:

jd mobile project generator

15 lines (14 loc) 356 B
/** * jshint * * @author willHu * @date 2015-09-03 * @contact email:huweiwei1@jd.com erp:huweiwei3 qq:226297845 */ module.exports = function (gulp, $, settings) { gulp.task('jshint', function () { return gulp.src(settings.srcPath + '/js/*.js') .pipe($.jshint()) .pipe($.jshint.reporter('default')); }); };