Skip to content

Instantly share code, notes, and snippets.

@epreston
Created April 27, 2023 16:41
Show Gist options
  • Save epreston/787c51d6bf59990c64939f03485561a7 to your computer and use it in GitHub Desktop.
Save epreston/787c51d6bf59990c64939f03485561a7 to your computer and use it in GitHub Desktop.
.prettierrc.json - JavaScript prettier config , 120 line width, tabwidth 2 space, semi, single quote, arrowParens, comma
{
"$schema": "http://json.schemastore.org/prettierrc",
"arrowParens": "always",
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"editorconfig": true,
"printWidth": 120
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment