Open flehoux opened 6 years ago
const lintES6Files = function (files) {
if (files.length === 0) return
return gulp.src(files)
.pipe(standardJs({fix: true}))
.pipe(standardJs.reporter('default', {showRuleNames: true}))
.pipe(dest('./dist'))
}
When running this, the logs show that things should have been fixed, but files are not being saved.