Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 581 Bytes

no-show.md

File metadata and controls

30 lines (22 loc) · 581 Bytes

no-show

Disallows the .show method.

⚠️ This rule is deprecated. Use no-visibility instead.

Rule details

❌ Examples of incorrect code:

$( 'div' ).show();
$div.show();
$( 'div' ).first().show();
$( 'div' ).append( $( 'input' ).show() );

✔️ Examples of correct code:

show();
[].show();
div.show();
div.show;

Resources