github.com/emc-advanced-dev/unik@v0.0.0-20190717152701-a58d3e8e33b7/containers/compilers/rump/nodejs/node-wrapper/node_modules/macaddress/gulpfile.js (about) 1 // vim: set et sw=2 ts=2 2 var gulp = require('gulp'); 3 4 var jshint = require('gulp-jshint'); 5 6 gulp.task('lint', function (done) { 7 gulp.src([ "*.js", "lib/*.js" ]) 8 .pipe(jshint()) 9 .pipe(jshint.reporter('default')) 10 .on('end', done); 11 }); 12 13 gulp.task('default', [ 'lint' ]);