Skip to content

Instantly share code, notes, and snippets.

@aklinker1
Last active February 5, 2023 15:26
Show Gist options
  • Save aklinker1/0a8e50c5dcca34653ce8b3c027d5551a to your computer and use it in GitHub Desktop.
Save aklinker1/0a8e50c5dcca34653ce8b3c027d5551a to your computer and use it in GitHub Desktop.
Standard Prettier Setup
singleQuote: true
trailingComma: all
endOfLine: lf
printWidth: 80
tabWidth: 2
vueIndentScriptAndStyle: false
pnpm add -D prettier husky pretty-quick
pnpm husky install
pnpm husky add .husky/pre-commit "pnpm pretty-quick --staged"
{
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment