Disallows the $.unique utility. Prefer $.uniqueSort.
📋 This rule is enabled in plugin:no-jquery/deprecated-3.0.
📋 This rule is enabled in plugin:no-jquery/all.
🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.
❌ Examples of incorrect code:
$.unique( [] );✔️ Examples of correct code:
unique();
'test'.unique();
'test'.unique;🔧 Examples of code fixed by this rule:
$.unique( [] ); /* → */ $.uniqueSort( [] );