Skip to content

Instantly share code, notes, and snippets.

@shricodev
Created November 22, 2024 15:36
Show Gist options
  • Save shricodev/cff3ac7506151906b05b33268ebc3fc1 to your computer and use it in GitHub Desktop.
Save shricodev/cff3ac7506151906b05b33268ebc3fc1 to your computer and use it in GitHub Desktop.
My standard prettier config for TS/JS projects
{
"arrowParens": "avoid",
"printWidth": 80,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all",
"proseWrap": "always",
"tabWidth": 2,
"plugins": [
"prettier-plugin-tailwindcss",
"prettier-plugin-organize-imports",
"prettier-plugin-package"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment