How can we instruct LESS to preserve line breaks in compiled CSS to enhance the cleanliness and readability of the code?
Is there a way to configure LESS to maintain single-line CSS rules without adding line breaks between each selector, as shown in the example below:
LESS:
html,body,div,span { ... }
Compiled CSS:
html,
body,
div,
span {
...
}