Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 338 Bytes

placeholder-in-extend.md

File metadata and controls

23 lines (17 loc) · 338 Bytes

Placeholder in Extend

Rule placeholder-in-extend will enforce whether extends should only include placeholder selectors.

Examples

When enabled, the following are allowed:

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

When enabled, the following are disallowed:

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