Gulp plugin to detect a pattern through files and fail when found.
npm install gulp-check-grep
var gulp = require('gulp');
var gilp = require('gilp')(gulp);
var gulpCheckGrep = require('gulp-check-grep');
gulp.task('check', function () {
return gulp.src('**/*')
.pipe(gulpCheckGrep(/console\.log/g, {message: 'console.log not allowed'}))
.pipe(gulpCheckGrep(/print\(/g, {message: 'print call found'}))
.pipe(gulpCheckGrep.failOnError());
});
Gulp Check Grep is Copyright (c) 2016 sophilabs, inc. It is free software, and may be redistributed under the terms specified in the license file.
Gulp Check Grep is maintained and funded by sophilabs, inc. The names and logos for sophilabs are trademarks of sophilabs, inc.