Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 214 Bytes

no-extends.md

File metadata and controls

15 lines (11 loc) · 214 Bytes

No Extends

Rule no-extends will enforce that extends are not allowed to be used.

Examples

When enabled, the following are disallowed:

.foo {
  @extend %bar;
  @extend .bar;
  @extend #bar;
}