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
CSSComb configuration in Visual Studio Code:
"csscomb.preset": { "always-semicolon": true, "sort-order": [ "text-align", "text-transform" ] }
Initial CSS code (notice missing semicolon after second property):
h1 { text-transform: uppercase; text-align: center }
Obtained result (there are two semicolons after first property):
h1 { text-align: center;; text-transform: uppercase; }
Expected result (one semicolon after both properties)
h1 { text-align: center; text-transform: uppercase; }
Is it a known CSSComb bug? Thanking you in advance,
The text was updated successfully, but these errors were encountered:
Still happens.
Sorry, something went wrong.
No branches or pull requests
CSSComb configuration in Visual Studio Code:
Initial CSS code (notice missing semicolon after second property):
Obtained result (there are two semicolons after first property):
Expected result (one semicolon after both properties)
Is it a known CSSComb bug?
Thanking you in advance,
The text was updated successfully, but these errors were encountered: