webapp/.prettierrc.json

18 lines
289 B
JSON
Raw Permalink Normal View History

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