gluegun-prettier

0.1.0 • Public • Published

gluegun-prettier

format

Formats a string containing JavaScript code through prettier.

const prettierCode = context.prettier.format("console.log ('hi!!' )")

reformat

Reformats an existing file through prettier.

context.prettier.reformat('/path/to/file')

Prettier Options

Both format and reformat accept a 2nd parameter with overrides for prettier's formatting options.

These are the default options.

{
  useTabs: false,
  printWidth: 80,
  tabWidth: 2,
  singleQuote: false,
  trailingComma: 'none',
  bracketSpacing: true,
  jsxBracketSameLine: false,
  parser: 'babylon',
  semi: true
}

Readme

Keywords

Package Sidebar

Install

npm i gluegun-prettier

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • skellock