Skip to content

Instantly share code, notes, and snippets.

@eduardolat
Last active May 27, 2022 07:01
Show Gist options
  • Save eduardolat/abb89c237130b4d38763538281ef49c7 to your computer and use it in GitHub Desktop.
Save eduardolat/abb89c237130b4d38763538281ef49c7 to your computer and use it in GitHub Desktop.
Configuración de prettier por defecto (Estándar)
module.exports = {
arrowParens: 'avoid',
bracketSpacing: true,
embeddedLanguageFormatting: 'auto',
htmlWhitespaceSensitivity: 'ignore',
insertPragma: false,
bracketSameLine: false,
jsxSingleQuote: false,
printWidth: 100,
proseWrap: 'preserve',
quoteProps: 'as-needed',
requirePragma: false,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
useTabs: false,
vueIndentScriptAndStyle: true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment