Skip to content

Instantly share code, notes, and snippets.

@klgh
Last active May 9, 2022 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klgh/d598096ff69d51fe6508c2029b321ca6 to your computer and use it in GitHub Desktop.
Save klgh/d598096ff69d51fe6508c2029b321ca6 to your computer and use it in GitHub Desktop.
my fav prettier formats
{
"semi": false,
"trailingComma": "none",
"bracketSpacing": true,
"singleQuote": true,
"overrides": [
{
"files": ["**/*.css", "**/*.scss", "**/*.html"],
"options": {
"singleQuote": false
}
}
],
"singleAttributePerLine": true,
"bracketSameLine": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment