Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 528 Bytes

File metadata and controls

27 lines (19 loc) · 528 Bytes

no-display-none

Sources that will help you do without { display: none; } and hide the content:

Options

true

The following pattern are considered violations:

.foo {
  display: none;
}

The following patterns are not considered violations:

.foo {
  display: flex;
}