Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cprussin/cp-gulp-prettier

Gulp plugin for prettier
https://github.com/cprussin/cp-gulp-prettier

Last synced: about 1 month ago
JSON representation

Gulp plugin for prettier

Awesome Lists containing this project

README

        

# Gulp Prettier

A gulp plugin for Prettier.

## Usage

```js
const prettier = require('cp-gulp-prettier');

gulp
.src(FILES_TO_FORMAT)
.pipe(prettier(PRETTIER_CONFIG))
.pipe(gulp.dest(OUTPUT));
```