gulp-csscomb
gulp-csscomb copied to clipboard
Report about found issues in style sheets
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 });
});
This would be absolutely amazing!
+1