Prettier does not leave brackets on same line. This is annoying for me and people who check my code as it is poor readability. Example below :
I use Intellij Ultimate version 2023.2.2. I work on an Angular project.
Settings
.prettierrc.json
{
"htmlWhitespaceSensitivity": "ignore",
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"semi": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"bracketSameLine": true,
"printWidth": 80
}


