Some Lodash methods have one or more aliases, which can lead to inconsistent code and decrease readability.
This rule takes no arguments.
The following patterns are considered warnings:
var ids = _.collect(users, 'id');
The following patterns are not considered warnings:
var ids = _.map(users, 'id');
If you do not want to enforce preferred alias, then you can disable this rule.