Disallows the $.sub
utility.
📋 This rule is enabled in plugin:no-jquery/deprecated-1.7
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.sub();
✔️ Examples of correct code:
sub();
'test'.sub();
'test'.sub;
Disallows the $.sub
utility.
📋 This rule is enabled in plugin:no-jquery/deprecated-1.7
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.sub();
✔️ Examples of correct code:
sub();
'test'.sub();
'test'.sub;