Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 219 Bytes

no-empty-rulesets.md

File metadata and controls

21 lines (13 loc) · 219 Bytes

No Empty Rulesets

Rule no-empty-rulesets will enforce that rulesets are not empty.

Examples

When enabled, the following are disallowed:

.foo {

}

.bar {
  content: 'baz';

  .qux {}
}

.waldo {}