1.0.0 • Published 7 years ago

gulp-write-good v1.0.0

Weekly downloads
14
License
MIT
Repository
github
Last release
7 years ago

gulp-write-good Build Status

Gulp plugin wrapper for write-good

Install

$ npm install --save-dev gulp-write-good

Usage

const gulp = require('gulp');
const gulpWriteGood  = require('gulp-write-good');

gulp.task('default', () => {
  gulp.src('**/*.md')
    .pipe(gulpWriteGood())
    .pipe(gulpWriteGood.reporter());
);

API

gulpWriteGood(options)

options

options object is passed directly to write-good function, all properties are described here.

gulpWriteGood.reporter()

This makes and prints a report for all suggestions returned by write-good

License

MIT