Closed bimalvasan closed 9 years ago
Hi,
When I tried to use
return gulp .src(['./src/**/*.js']) .pipe(jscs()) .pipe(jshint()) .pipe(jshint.reporter('jshint-stylish', { verbose: true }));
I am getting error as shown below
[10:08:03] Error in plugin 'gulp-jshint' Message: Invalid reporter
But if I replace 'jshint-stylish' with 'default' it is working fine and I am using "gulp-jshint": "^1.11.0"
Is there any change in 'jshint-stylish' or am I missing something?
Thanks, Bimal
Do you have the jshint-stylish node module installed?
It was missing. It is working fine once it was installed.
Hi,
When I tried to use
I am getting error as shown below
But if I replace 'jshint-stylish' with 'default' it is working fine and I am using "gulp-jshint": "^1.11.0"
Is there any change in 'jshint-stylish' or am I missing something?
Thanks, Bimal