Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 315 Bytes

single-line-per-selector.md

File metadata and controls

22 lines (16 loc) · 315 Bytes

Single Line Per Selector

Rule single-line-per-selector will enforce whether selectors should be placed on a new line.

Examples

When enabled, the following are allowed:

.foo,
.bar {
  content: 'baz';
}

When enabled, the following are disallowed:

.foo, .bar {
  content: 'baz';
}