gulp-jscs icon indicating copy to clipboard operation
gulp-jscs copied to clipboard

Check JavaScript code style with jscs

Results 13 gulp-jscs issues
Sort by recently updated
recently updated
newest added

hi i have use .editorconfig for configure jscs formater. how can i do it?

In my project, we are running Sonar profile against JS files and JSCS is not able to capture those issues. Can we integrate sonar rules in JSCS?

I'm having some compatibility issues when trying to use the [jscs-html-reporter](https://www.npmjs.com/package/jscs-html-reporter) This works fine: ``` $ jscs src/ --reporter jscs-html-reporter >> jscs report written to /.../jscs-html-report.html Too many errors... Increase...

I am using gulp-jscs 4.0 I get this error at the beginning of the first line of one of my js files: Expected token value ":" but = found at...

Hi team, I have updated to jscs 3.0.2 and I have updated my gulp task to the following: ``` const gulp = require('gulp'); const jscs = require('gulp-jscs'); gulp.task('test:jscs', () =>...

Im trying to use gulp and jscs to prevent code smell. I also want to use watch so that this happens when ever a change is made. The problem I'm...

The docs suggest errors should be an array of error objects. > errors: [{ // an array of jscs error objects However it appears to be returning an object, not...

I have a gulp task like this: ``` js 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...

I am working on a client project and this error has been bugging me for the last 24 hours and i can't work until it is fixed. Screen cap: ![skjermbilde](https://cloud.githubusercontent.com/assets/10583205/13611947/548d3868-e565-11e5-89d4-54a9165c650d.PNG)