I was using basic JS and HTML for coding practice and have installed Prettier extension. I assigned Ctrl+Shift+L to use auto formatting. I used this extension before and I can clearly remember that it was wrapping long code lines and object into multiple logical lines, for example:
const someObj = {name: 'MyName', surname: 'MySurname'};
To this:
const someObj = {
name: 'MyName',
surname: 'MySurname'
};
Any suggestions what options should I play with to get this formatting?