Skip to content

naoufal/gulp-nf-prettier

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%