gulp-eslint-if-fixed

Helper for gulp eslint fixing

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
gulp-eslint-if-fixed
1.0.08 years ago8 years agoMinified + gzip package size for gulp-eslint-if-fixed in KB

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'));
}); ```