Skip to content

Instantly share code, notes, and snippets.

@pitkane
Created March 26, 2017 14:03
Show Gist options
  • Save pitkane/226193f6875d76fb089296055a706070 to your computer and use it in GitHub Desktop.
Save pitkane/226193f6875d76fb089296055a706070 to your computer and use it in GitHub Desktop.
const prettier = require("prettier");
prettier.format(source, {
printWidth: 80,
tabWidth: 2,
singleQuote: false,
trailingComma: "none",
bracketSpacing: true,
jsxBracketSameLine: false,
parser: "babylon"
});
// prettier-ignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment