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
I haven't had time to look into how the Sass depractation affects the different configs, or in your case, mixin use.
I understood the change correctly, then you have to either wrap your overrides with & { }, or then you would need to have the @include after the overrides (in your case this would not work).
Hi, im trying to add
stylelint-config-standard-scss
to my project.In my project i have
utils.scss
with mixins like:Previously I wrote style for my component like this:
The new warning in Sass 1.77.7 tells me that i should move include after top level rules rules.
But I need to keep mixin on the top because of overriding rules.
After upgrade to Sass 1.77.7 i rewrote code like this:
But now
stylelint-config-standard-scss
tells that I should has only one.my-component
selector.Can someone suggest: how can I properly rewrite code in this situation according to
stylelint-config-standard-scss
and new Sass nesting rules?The text was updated successfully, but these errors were encountered: