Prettier for JavaScript Standard Style
npm install prettier-standard-formatterThis tool combines the prettier pretty-printer with the popular configuration-free JavaScript Standard Style.
``js
const prettierStandard = require('prettier-standard')
// There is no configuration, just like standard.
prettierStandard.format(source).then(console.log)
`
- __Atom:__ prettier-standard-formatter
sh
$ yarn global add prettier-standard-formatter
`$3
`sh
$ prettier-standard-formatter --help Usage
$ prettier-standard-formatter [ ...]
Examples
$ prettier-standard-formatter
$ prettier-standard-formatter index.js
$ prettier-standard-formatter foo.js bar.js
$ prettier-standard-formatter index.js src/*/.js
``_Note: CLI will use your local installation of Prettier Standard Formatter if it's available._