dvm/.prettierrc

14 lines
195 B
Plaintext
Raw Normal View History

2023-07-08 11:49:12 +00:00
{
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4,
"overrides": [
{
"files": ["*.ts", "*.mts"],
"options": {
"parser": "typescript"
}
}
]
}