You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
378 B
14 lines
378 B
var gulp = require('gulp');
|
|
var jshint = require('gulp-jshint');
|
|
var stylish = require('jshint-stylish');
|
|
var cache = require('gulp-cached');
|
|
var paths = require('./paths.js');
|
|
|
|
|
|
gulp.task('jshint', function () {
|
|
return gulp.src([paths.src.scripts, paths.src.exclude.libs])
|
|
.pipe(cache('jshint'))
|
|
.pipe(jshint())
|
|
.pipe(jshint.reporter(stylish));
|
|
});
|