Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

combining tslint.report() and tslint()? #58

Open
qinfchen opened this issue Mar 17, 2016 · 1 comment
Open

combining tslint.report() and tslint()? #58

qinfchen opened this issue Mar 17, 2016 · 1 comment

Comments

@qinfchen
Copy link

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: {
            ...
            }
        }))
@panuhorsmalahti
Copy link
Owner

PRs welcome if someone really needs this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants