Skip to content

Instantly share code, notes, and snippets.

@EmmaG2
Created April 14, 2023 21:41
Show Gist options
  • Save EmmaG2/a44e64f632c4bbf51e3f81a110945c36 to your computer and use it in GitHub Desktop.
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.
{
"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