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
The following code:
$foo: 15px; .foo { margin-top: - ($foo * 2); }
Produces the following error:
The text was updated successfully, but these errors were encountered:
This would result in invalid css anyway? I agree it shouldn't throw an error though.
Sorry, something went wrong.
I don't know exactly, but if so, then the space between operators check should ignore such cases:
$foo: 15px; .foo { margin: -($foo * 2); }
warning Space expected around operator space-around-operator
Ah, I see the real problem now! Thanks for the report 👍
No branches or pull requests
The following code:
Produces the following error:

The text was updated successfully, but these errors were encountered: