Last active
May 27, 2022 07:01
-
-
Save eduardolat/abb89c237130b4d38763538281ef49c7 to your computer and use it in GitHub Desktop.
Configuración de prettier por defecto (Estándar)
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
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