stylus-supremacy
stylus-supremacy copied to clipboard
Comments lost after formatting
Comments with //
before other comments in /* ... */
are lost after formatting
Before:
// line1
// line2
/* blah blah blah */
.class1
margin 8px
After:
/* blah blah blah */
.class1 {
margin: 8px;
}
Comments with //
at the end of the file are also lost
Before:
.class1
margin 8px
// line1
// line2
After:
.class1 {
margin: 8px;
}
Same. My temporary solution is to put an empty identifier at the bottom end, like
.
//
If anyone has a better solution please share :)
Ping?
+1, this is really troubling, any updates?
+1, please make this selectable in the settings While testing different styling options, it's very annoying if commented lines are removed automatically on file save.