Open
Description
I have a gulp task like this:
gulp.task("jscs", function () {
gulp.src(["**/*.js"])
.pipe(plugins.jscs())
.pipe(plugins.jscs.reporter());
});
Depending on when errors are encountered they do not seem to be reported. For example, if I change the glob pattern to ["zzz/**/*.js", "{aaa,bbb,ccc}/**/*.js"]
(in this example only the dir zzz contains errors), suddenly the reporter outputs errors.
It seems like the reporter somehow gets "saturated" with messages so I tried changing the maxErrors
config for jscs but this didn't make a difference.
Installed versions:
├─┬ gulp-jscs@3.0.2
│ └─┬ jscs@2.11.0
Metadata
Metadata
Assignees
Labels
No labels