I cannot for the life of me find where to control these settings.
- multiple selectors separated by a comma should not go to a new line
- force curly braces for CSS in a new line
For example, I want to turn this:
html,
body,
.container {
height: 100%;
margin: 0;
}
Into this:
html, body, .container
{
height: 100%;
margin: 0;
}