lesshint checkstyle reporter for gulp.
npm install gulp-lesshint-checkstyle-reporter
npm install gulp-lesshint-checkstyle-reporter
`
Usage
$3
`javascript
var gulp = require('gulp');
var lesshint = require('gulp-lesshint');
var checkstyleReporter = require('gulp-lesshint-checkstyle-reporter');
gulp.task('lesshint', function() {
gulp.src('*.less')
.pipe(lesshint())
.pipe(checkstyleReporter())
.pipe(gulp.dest('target/checkstyle-reports'));
});
``