Created
November 22, 2024 15:36
-
-
Save shricodev/cff3ac7506151906b05b33268ebc3fc1 to your computer and use it in GitHub Desktop.
My standard prettier config for TS/JS projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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