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

Unable to lint several folders #13

Open
maxmert opened this issue May 13, 2015 · 2 comments
Open

Unable to lint several folders #13

maxmert opened this issue May 13, 2015 · 2 comments

Comments

@maxmert
Copy link

maxmert commented May 13, 2015

It says nothing:

gulp.task('default', function () {
    return gulp.src(['src/**/*.js', 'src/**/*.jsx'])
        .pipe(jsxcs());
});

But if a specify a file src/app.jsx everything works correctly:

gulp.task('default', function () {
    return gulp.src('src/app.jsx')
        .pipe(jsxcs());
});
@agschwender
Copy link
Contributor

I actually run it across multiple directories in our development environment. So if I had to guess, there might be a problem with one of the files that are being found in the glob and that problem is not being surfaced correctly by gulp-jsxcs. If you're able to identify the problem, I'll be happy to change gulp-jsxcs so that the error is reported correctly.

@craigkj
Copy link

craigkj commented Aug 17, 2015

I believe that this might be the same problem as highlighted in #16

Didn't want to hijack the thread incase the OP is seeing a different problem.

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

3 participants