alphascript-server
Version:
CRUD operations for mongo and other functionalities to get started quickly in any CMS project
13 lines (9 loc) • 352 B
JavaScript
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var all = ['!node_modules/**/*.*', '!bower_components/**/*.*', '!**/.*/*.*', '!**/.*/**/*.*'];
gulp.task('default', ['jshint']);
gulp.task('jshint', function () {
return gulp.src(all.concat(['*.js', '**/*.js']))
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'));
});