Skip to content

Instantly share code, notes, and snippets.

@christianjjc
Last active February 15, 2024 06:32
Show Gist options
  • Save christianjjc/838a9fa54a4a219a4d3ea2de00552882 to your computer and use it in GitHub Desktop.
Save christianjjc/838a9fa54a4a219a4d3ea2de00552882 to your computer and use it in GitHub Desktop.
Archivos para el Prettier Config
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
/.angular
/.vscode
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.dockerignore
{
"arrowParens": "always",
"bracketSameLine": true,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 150,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleAttributePerLine": false,
"singleQuote": false,
"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