When using native functions like forEach and map, it's often better to use the Lodash implementation.
This rule takes one argument - an optional options object. This object can have two keys: except
and ignoreObjects
, both optional.
except
contains an array of methods that should not be reported on.ignoreObjects
contains an array of objects that should not be reported on.
For instance, if you do not wish to use _.keys
but prefer Object.keys
, the config would be:
{
"rules": {
"lodash/prefer-lodash-method": [2, {"except": ["keys"]}]
}
}
And if you do not with the rule to work on any object named fp
:
{
"rules": {
"lodash/prefer-lodash-method": [2, {"ignoreObjects": ["fp"]}]
}
}
The following patterns are considered warnings:
var b = a.map(f);
if (arr.some(f)) {
// ...
}
The following patterns are not considered warnings:
_.map(a, f);
_(arr).map(f).reduce(g);
If you do not want to enforce using Lodash methods, you should not use this rule.