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;
}
Consider the file
test.scss: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! :)