I am trying to achieve this code style:
h1,h2,h3,h4,h5 {
font-weight: 400 !important;
}
However, Prettier - Code Formatter is splitting each selector into separate lines like this:
h1,
h2,
h3,
h4,
h5 {
font-weight: 400 !important;
}
The issue of CSS Selectors being divided into multiple lines can be seen here