Disallows the $.inArray utility. Prefer Array#indexOf.
📋 This rule is enabled in plugin:no-jquery/all.
❌ Examples of incorrect code:
$.inArray();✔️ Examples of correct code:
inArray();
'test'.inArray();
'test'.inArray;Disallows the $.inArray utility. Prefer Array#indexOf.
📋 This rule is enabled in plugin:no-jquery/all.
❌ Examples of incorrect code:
$.inArray();✔️ Examples of correct code:
inArray();
'test'.inArray();
'test'.inArray;