Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 335 Bytes

extends-before-mixins.md

File metadata and controls

23 lines (17 loc) · 335 Bytes

Extends Before Mixins

Rule extends-before-mixins will enforce that extends should be written before mixins in a ruleset.

Examples

When enabled, the following are allowed.:

.foo {
  @extend %bar;
  @include baz;
}

When enabled, the following are disallowed:

.foo {
  @include baz;
  @extend %bar;
}