0.0.1 • Published 7 years ago

js-beautify-config-rowupper v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

Rowupper JS Beautifier Config

Sharable js-beautify config used by Rowupper.

Install

npm install --save js-beautify-config-rowupper

Usage

Within your js-beautify config object You can extend this configuration. This will serve as a base for your config, then you can make overrides in your own config object.

const gulp = require('gulp');
const prettify = require('gulp-jsbeautifier');

gulp.task('...', () =>
  gulp.src(...)
    .pipe(prettify(require('js-beautify-config-rowupper')))
    .pipe(gulp.dest(...))
);