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
This issue is exposed in the original sample code. The comment should be placed after the semicolon:
The text was updated successfully, but these errors were encountered:
I dont't really like the comments before the semicolon. 👎 Any info about what's correct?
Sorry, something went wrong.
As stated in my original issue, the comment should appear after the semicolon:
background-color: #333; /* darkgrey */
Oh, my bad. 👍 then, that's the correct way imho.
This in fact triggers a bug.
Before:
menu{color:red; /*foobar*/}
Beautified:
menu { color: red; /*foobar*/; }
The unnecessary semicolon there is wrong.
No branches or pull requests
This issue is exposed in the original sample code. The comment should be placed after the semicolon:
The text was updated successfully, but these errors were encountered: