Skip to content

Instantly share code, notes, and snippets.

@kurt-liao
Created July 15, 2022 13:31
Show Gist options
  • Select an option

  • Save kurt-liao/13c155eec609f7d7f94a245a21c0c6cd to your computer and use it in GitHub Desktop.

Select an option

Save kurt-liao/13c155eec609f7d7f94a245a21c0c6cd to your computer and use it in GitHub Desktop.
prettier template
{
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 80,
"trailingComma": "none",
"overrides": [
{
"files": ["*.json5"],
"options": {
"singleQuote": false,
"quoteProps": "preserve"
}
},
{
"files": ["*.yml"],
"options": {
"singleQuote": false
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment