how to made prettier to format my code in the way lika on a picture?
Every time I save my code it is formatted to one line of code, but it's much more readable for me to keep it like on shared picture.
EDIT:
My .prettierrc:
{
"singleQuote": true,
"printWidth": 200,
"semi": true,
"bracketSpacing": true,
"arrowParens": "always",
"parser": "typescript",
"useTabs": false,
"tabWidth": 2
}