Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 566 Bytes

no-other-utils.md

File metadata and controls

32 lines (24 loc) · 566 Bytes

no-other-utils

Disallows all utilities not covered by more specific rules.

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

Rule details

❌ Examples of incorrect code:

$.dequeue();
$.noConflict();
$.uniqueSort();
$.otherUtil();

✔️ Examples of correct code:

$.each();
$.find();
$.map();
$.otherProperty;
$div.otherMethod();
method();

Resources