You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dynamic placeholder names are reported as fatal errors when declared but not when they are extended.
I'm using sass-lint 1.5.0.
Code example:
// produces an error%#{$placeholder-id} { color: red; }
// but the following is ok
'%#{$placeholder-id}' { color: red; }
// this does not produce an error@extend%#{$placeholder-id};
The text was updated successfully, but these errors were encountered:
This is a problem with the version of gonzales-pe (our AST) we were using. It didn't have great support for interpolation.
I can confirm that all your above examples work in the latest version of gonzales-pe which we're currently in the process of upgrading to. It should be complete and released shortly.
Hi,
Dynamic placeholder names are reported as fatal errors when declared but not when they are extended.
I'm using
sass-lint 1.5.0
.Code example:
The text was updated successfully, but these errors were encountered: