webapp/.prettierrc.json

17 lines
262 B
JSON
Raw Normal View History

2022-09-09 11:53:35 +00:00
{
"htmlWhitespaceSensitivity": "ignore",
"semi": false,
"singleQuote": true,
"proseWrap": "always",
"printWidth": 108,
"plugins": [],
"overrides": [
{
"files": "*.ts",
"options": {
"parser": "typescript"
}
}
]
}