Rule extends-before-declarations
will enforce that extends should be written before declarations in a ruleset.
When enabled, the following are allowed:
.foo {
@extend %bar;
content: 'baz';
}
When enabled, the following are disallowed:
.foo {
content: 'baz';
@extend %bar;
}