Skip to content

Instantly share code, notes, and snippets.

@tokisakiyuu
Created March 2, 2025 08:06
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",
"organizeImportsSkipDestructiveCodeActions": true,
"plugins": [
"prettier-plugin-organize-imports"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment