gulp-tslint
gulp-tslint copied to clipboard
combining tslint.report() and tslint()?
Is it possible to combine tslint and tslint.report calls?so there is alway only one pipe call to do tslint or tslint + report.
Current settings:
gulp.src("input.ts")
.pipe(tslint())
.pipe(tslint.report("prose", {
emitError: false
}))
suggested settings
gulp.src("input.ts")
.pipe(tslint({
configuration: {
},
report: {
...
}
}))
PRs welcome if someone really needs this.