Skip to content

SumTotalSystems/gulp-lesshint-checkstyle-reporter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-lesshint-checkstyle-reporter

Writes checkstyle output for lesshint to a stream.

Installation

npm install gulp-lesshint-checkstyle-reporter

Usage

Gulp

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'));
});

Options

  • filename (defaults to checkstyle.xml). Default filename of the output xml file.

Reporter Code

Original reporter code by trygveaa/lesshint-reporter-checkstyle

About

Checkstyle reporter for lesshint.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%