We have a lot of code in our project that does something like this:
@mixin some-mixin {
transition: all 0.2s ease-out;
// ... other code
}
and we use those mixins like so:
.some-class {
@include some-mixin;
// ... other code
}
It would be useful if the plugin could error out either inside the mixin or where it's used.
We have a lot of code in our project that does something like this:
and we use those mixins like so:
It would be useful if the plugin could error out either inside the mixin or where it's used.