Skip to content

Instantly share code, notes, and snippets.

@janhesters
Created September 26, 2020 12:30
Show Gist options
  • Save janhesters/18ed174cf071bbf06b3b60557f53ef54 to your computer and use it in GitHub Desktop.
Save janhesters/18ed174cf071bbf06b3b60557f53ef54 to your computer and use it in GitHub Desktop.
Configure Prettier
{
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment