"prettier": "^3.6.2",
.prettierrc
{
"useTabs": false,
"printWidth": 140,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none",
"bracketSameLine": false,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
}
- you know how to have automatic indentation with control flow
- I looked for different solutions on the internet without success
- to force the formatting, I select all the html --> formatting selection but not working 😦