gulp-nf-prettier

3.0.0 • Public • Published

gulp-nf-prettier

A Gulp plugin to run Prettier on your code base.

nf?

Stands for the Netflix fork of gulp-pretter. We had certain requirements for the plugin so we forked it for ourselves.

Peer Dependency

Prettier is a peer dependency of gulp-nf-prettier. That means you can upgrade Prettier independent of this plugin since the API shouldn't change too much. This also means that you should use their docs to see how to utilize the library.

check

This plugin has the ability to be run in a CI environment. Pass the check flag in the options and if any file hasn't been run through prettier with your options it will error, letting you fail your build.

Example usage

gulp
  .src(glob, { base: './' })
  .pipe(prettier({
    printWidth: 120,
    tabWidth: 2,
    parser: 'flow',
    singleQuote: true,
    trailingComma: 'es5',
    bracketSpacing: true,
    jsxBracketSameLine: true,
    check: true
  })

Credit

Forked from Bhargav Patel. Credit to him to getting the ball rolling. Credit to the Gulp team. Consider donating to them. Credit to James Long for an amazing library. Hire him for contract work.

Package Sidebar

Install

npm i gulp-nf-prettier

Weekly Downloads

191

Version

3.0.0

License

MIT

Unpacked Size

4.67 kB

Total Files

4

Last publish

Collaborators

  • btholt
  • naoufal
  • sandropadin