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

gulp-jscs requires reporter #36

Open
a2k42 opened this issue May 11, 2016 · 0 comments
Open

gulp-jscs requires reporter #36

a2k42 opened this issue May 11, 2016 · 0 comments

Comments

@a2k42
Copy link

a2k42 commented May 11, 2016

When running the first task, gulp vet, no output was generated from jscs.

It appears that gulp-jscs now needs a reporter like jshint:

gulp.task('vet', function() {
    console.log('vetting');
    return gulp
        .src([
            './src/**/*.js',
            './*.js'
        ])
        .pipe(jscs())
        .pipe(jscs.reporter())
        .pipe(jshint())
        .pipe(jshint.reporter('jshint-stylish', {verbose: true}));
});

Thanks to EdinM for that one.

@a2k42 a2k42 changed the title gulp-jscs requires reporter and .jscsrc validateJSDoc not jsDoc gulp-jscs requires reporter and .jscsrc validateJSDoc now jsDoc May 11, 2016
@a2k42 a2k42 closed this as completed May 11, 2016
@a2k42 a2k42 changed the title gulp-jscs requires reporter and .jscsrc validateJSDoc now jsDoc gulp-jscs requires reporter May 11, 2016
@a2k42 a2k42 reopened this May 11, 2016
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

1 participant