beautify-proj
v1.0.0
Published
JS Beautifier
Maintainers
Readme
beautify-proj

Uses js-beautify to beautify an entire directory, including its subdirectories.
Usage
beautify-proj -i dir [ -o dir ] -c js-beautify-config-file [ -e reg-ex ]See js-beautify for JSON config file options.
Examples
Beautify ./scripts in place:
beautify-proj -i scripts -o . -c beautify.jsonBeautify ./scripts in place and ignore *keep-ugly*
beautify-proj -i scripts -o . -c beautify.json -e keep-uglyBeautify ./scripts and place beautified files in /tmp/scripts:
beautify-proj -i scripts -o /tmp -c beautify.jsonTest for any ugly files (non-beautified) in scripts:
beautify-proj -i scripts -c beautify.json