Disallows the $.isWindow
utility.
📋 This rule is enabled in plugin:no-jquery/deprecated-3.3
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.isWindow();
✔️ Examples of correct code:
isWindow();
myClass.isWindow();