I use Web Essentials 2012 in VS 2012.
When I compile LESS file with content like that:
/* HEADER */
.header{
background: red;
}
/* FOOTER */
.footer{
background: black;
}
...to CSS file, the outcome is this:
/* HEADER */
.header{
background: red;
}
/* FOOTER */
.footer{
background: black;
}
Is there an option "Keep original formatting" or set of option with which I could keep the original formatting ?