Files
scheduler/gulpfile.js
T
Alex Vernacchia abd84f7fcb Initial commit
2015-01-07 17:23:07 +00:00

14 lines
307 B
JavaScript

'use strict';
var gulp = require( 'gulp' );
var jshint = require( 'gulp-jshint' );
gulp.task('jshint', function() {
gulp.src( ['./scheduler.js', './test.js'] )
.pipe( jshint('./.jshintrc') )
.pipe( jshint.reporter( 'jshint-stylish' ) );
});
// will add tasks for min and other stuff