We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider the file test.scss:
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.
selector-list-comma-newline-after: always
After formatting both comments are gone! :)
.sel, .sel2 { display: inline; }
The text was updated successfully, but these errors were encountered:
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
stylefmt
/* Get app banner */
Sorry, something went wrong.
No branches or pull requests
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! :)
The text was updated successfully, but these errors were encountered: