Rule placeholder-in-extend
will enforce whether extends should only include placeholder selectors.
When enabled, the following are allowed:
.foo {
@extend %bar;
@extend .baz%qux;
}
When enabled, the following are disallowed:
.foo {
@extend .bar;
@extend #baz;
}