Created
March 2, 2025 08:06
-
-
Save tokisakiyuu/8dbefcd0daf7556849d927ff1a584526 to your computer and use it in GitHub Desktop.
My Prettier Configurtion
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
{ | |
"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