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