Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 599 Bytes

no-other-methods.md

File metadata and controls

33 lines (25 loc) · 599 Bytes

no-other-methods

Disallows all methods not covered by more specific rules.

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

Rule details

❌ 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();

Resources