Skip to content

Instantly share code, notes, and snippets.

@jasonappah
Last active October 28, 2021 18:35
Show Gist options
  • Save jasonappah/3f4d5884db8c4e8e17dfc2140c2d2577 to your computer and use it in GitHub Desktop.
Save jasonappah/3f4d5884db8c4e8e17dfc2140c2d2577 to your computer and use it in GitHub Desktop.
Prettier config I like to use on most of my repos
{
"printWidth": 90,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": false,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "always",
"requirePragma": false,
"insertPragma": false,
"proseWrap": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment