mirror of
https://github.com/wassname/scheduler.git
synced 2026-06-27 16:31:34 +08:00
14 lines
307 B
JavaScript
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
|