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