Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 554 Bytes

no-is-plain-object.md

File metadata and controls

26 lines (18 loc) · 554 Bytes

no-is-plain-object

Disallows the $.isPlainObject utility.

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

Rule details

❌ Examples of incorrect code:

$.isPlainObject();

✔️ Examples of correct code:

isPlainObject();
myClass.isPlainObject();
$div.isPlainObject();

Resources