Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-eslint-if-fixed

lukeapage21.8kISC1.0.0

Helper for gulp eslint fixing

gulp, eslint, fix

readme

gulp-eslint-if-fixed

usage:

var eslintIfFixed = require('gulp-eslint-if-fixed');

+gulp.task('lint-fix', function() {
  return gulp.src('src/*.js')
    .pipe(eslint({fix:true}))
    .pipe(eslint.format())
    .pipe(eslintIfFixed('src'));
});