does anybody know how to run JSCS from gulp with parameter ? I want to add -x options which autoformats script (see https://twitter.com/jscs_dev). Orginally, I can type in console:
jscs my_Path -x
I want do do the same, just in gulp. My gulp code (simplify):
var jscs = require('gulp-jscs');
var autoFormat = "-x";
var testStream = gulp.src('/testfolder/*.js');
return testStream.pipe(jscs());
Thanks for any help.