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