Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 319 Bytes

no-d-none.md

File metadata and controls

21 lines (13 loc) · 319 Bytes

No D None

Rule Details

Ideally JavaScript behaviors should not rely on Primer CSS when the hidden property can be used.

👎 Examples of incorrect code for this rule:

div.classList.add('d-none')

👍 Examples of correct code for this rule:

div.hidden = false

Version

4.3.2