Last active
October 9, 2025 02:23
-
-
Save gabrielduete/e0d047fcd20bb154a7904267bee50647 to your computer and use it in GitHub Desktop.
My preferred prettier settings (subject to change)
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", | |
| "bracketSpacing": true, | |
| "jsxBracketSameLine": false, | |
| "jsxSingleQuote": true, | |
| "endOfLine": "lf", | |
| "htmlWhitespaceSensitivity": "css", | |
| "insertPragma": false, | |
| "printWidth": 80, | |
| "proseWrap": "always", | |
| "requirePragma": false, | |
| "semi": false, | |
| "singleQuote": true, | |
| "tabWidth": 2, | |
| "importOrder": [ | |
| "^react$", | |
| "^@mui/(.*)$", | |
| "<THIRD_PARTY_MODULES>", | |
| "^@/src/(.*)$", | |
| "^components/(.*)$", | |
| "^pages/(.*)$", | |
| "^context/(.*)$", | |
| "^hooks/(.*)$", | |
| "^utils/(.*)$", | |
| "^styles/(.*)$", | |
| "^[./]" | |
| ], | |
| "importOrderSeparation": true, | |
| "importOrderSortSpecifiers": true, | |
| "plugins": [ | |
| "@trivago/prettier-plugin-sort-imports" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment