Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 657 Bytes

File metadata and controls

29 lines (19 loc) · 657 Bytes

no-is-window

Disallows the $.isWindow utility.

📋 This rule is enabled as an error in plugin:no-jquery/deprecated-4.0.

📋 This rule is enabled as a warning in plugin:no-jquery/deprecated-3.3.

📋 This rule is enabled as a warning in plugin:no-jquery/all.

Rule details

❌ Examples of incorrect code:

$.isWindow();

✔️ Examples of correct code:

isWindow();
myClass.isWindow();

Resources