Created
April 14, 2023 21:41
-
-
Save EmmaG2/a44e64f632c4bbf51e3f81a110945c36 to your computer and use it in GitHub Desktop.
La configuración de prettier que uso para mis proyectos de javascript, front end y back end.
This file contains 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": "always", | |
"bracketSameLine": false, | |
"bracketSpacing": true, | |
"embeddedLanguageFormatting": "auto", | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"jsxSingleQuote": true, | |
"printWidth": 80, | |
"proseWrap": "preserve", | |
"quoteProps": "as-needed", | |
"requirePragma": false, | |
"semi": false, | |
"singleAttributePerLine": true, | |
"singleQuote": true, | |
"tabWidth": 2, | |
"trailingComma": "es5", | |
"useTabs": false, | |
"vueIndentScriptAndStyle": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment