Graphite/.prettierrc

23 lines
321 B
Plaintext

{
"singleQuote": false,
"useTabs": true,
"tabWidth": 4,
"printWidth": 200,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": ["*.yml", "*.yaml"],
"options": {
"useTabs": false,
"tabWidth": 2
}
},
{
"files": ["*.svelte"],
"options": {
"parser": "svelte"
}
}
]
}