Skip to content

Instantly share code, notes, and snippets.

@ianshea
Created October 8, 2018 16:13
Show Gist options
  • Save ianshea/7a22a5acf8d91e06ceb7ad0091650a62 to your computer and use it in GitHub Desktop.
Save ianshea/7a22a5acf8d91e06ceb7ad0091650a62 to your computer and use it in GitHub Desktop.
Prettier Configuration
{
"printWidth": 80,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"parser": "babylon",
"semi": true,
"useTabs": false,
"proseWrap": "preserve",
"arrowParens": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment