UNPKG

sass-lint

Version:

Sass linter. Compatible but different from scss-lint

24 lines (17 loc) 338 B
# Placeholder in Extend Rule `placeholder-in-extend` will enforce whether extends should only include placeholder selectors. ## Examples When enabled, the following are allowed: ```scss .foo { @extend %bar; @extend .baz%qux; } ``` When enabled, the following are disallowed: ```scss .foo { @extend .bar; @extend #baz; } ```