Skip to content

Instantly share code, notes, and snippets.

@tokisakiyuu
Last active July 15, 2025 07:51
Show Gist options
  • Save tokisakiyuu/8dbefcd0daf7556849d927ff1a584526 to your computer and use it in GitHub Desktop.
Save tokisakiyuu/8dbefcd0daf7556849d927ff1a584526 to your computer and use it in GitHub Desktop.
My Prettier Configurtion
{
"prettier": {
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"quoteProps": "as-needed",
"bracketSpacing": true,
"arrowParens": "avoid",
"trailingComma": "all",
"plugins": [
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"importOrder": [
"server-only",
"^(react|next?/?([a-zA-Z/]*))$",
"<THIRD_PARTY_MODULES>",
"^@/(.*)$",
"^[./]"
],
"importOrderSortSpecifiers": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment