Skip to content

Instantly share code, notes, and snippets.

@gabrielduete
Last active October 9, 2025 02:23
Show Gist options
  • Select an option

  • Save gabrielduete/e0d047fcd20bb154a7904267bee50647 to your computer and use it in GitHub Desktop.

Select an option

Save gabrielduete/e0d047fcd20bb154a7904267bee50647 to your computer and use it in GitHub Desktop.
My preferred prettier settings (subject to change)
{
"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