koistya / gulp-csscomb

CSScomb plugin for Gulp.js. Formats CSS according to a pre-defined coding style.
http://csscomb.com
MIT License
122 stars 25 forks source link

Report about found issues in style sheets #10

Open koistya opened 10 years ago

koistya commented 10 years ago

Do you need a functionality which would allow you to run csscomb in reporting mode? So it would report found issues in style sheets, but don't make any modifications to the output stream?

How about this:

var gulp = require('gulp');
var csscomb = require('gulp-csscomb');

gulp.task('lintStyles', function () {
    return gulp.src('src/less/bootstrap.less')
        .pipe(csscomb({ lint: true });
});
jonashaefele commented 9 years ago

This would be absolutely amazing!

josh18 commented 8 years ago

+1