Skip to content

Instantly share code, notes, and snippets.

@Landish
Last active September 13, 2017 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Landish/1345a7052248d618d5ab9d361e48f159 to your computer and use it in GitHub Desktop.
Save Landish/1345a7052248d618d5ab9d361e48f159 to your computer and use it in GitHub Desktop.
Default options for Prettier

Default options for Prettier - https://prettier.io/docs/en/options.html

.prettierrc:

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

Note: trailingComma is set to none by default, but here is set to es5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment