codies/.prettierrc

16 lines
287 B
Plaintext
Raw Normal View History

2020-05-23 21:51:11 +00:00
{
"singleQuote": true,
"tabWidth": 4,
"useTabs": false,
"printWidth": 120,
"overrides": [
{
"files": ["*.yml", "*.yaml"],
"options": {
"tabWidth": 2,
"singleQuote": false
}
}
]
}