Disallows all utilities not covered by more specific rules.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.dequeue();
$.noConflict();
$.uniqueSort();
$.otherUtil();
✔️ Examples of correct code:
$.each();
$.find();
$.map();
$.otherProperty;
$div.otherMethod();
method();