comments removed when dealing with multi-line selectors
vvs opened this issue · 1 comments
vvs commented
Consider the file test.scss
:
.sel, // selector #1
.sel2 /* selector #2 */ {
display: inline;
}
My stylelint rules include: selector-list-comma-newline-after: always
. Stylelint produces no errors for such a file, it is OK with the content.
After formatting both comments are gone! :)
.sel,
.sel2 {
display: inline;
}
montogeek commented
Getting a similar behaviour with this code:
#react-root > section > div, /* Get app banner */
#react-root article img { /* Get app bagde */
display: none;
}
After running stylefmt
, /* Get app banner */
comment is removed