-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
The following doesn't work as _.extend
only accepts two args when using lodash/fp
:
rules: _.extend(
eslintBuiltinRules,
reactRules,
lodashFpRules,
lodashRules,
importRules,
mochaRules,
jestRules
)
The fix is to do:
_.mergeAll(
[
eslintBuiltinRules,
reactRules,
lodashFpRules,
lodashRules,
importRules,
mochaRules,
jestRules
]
)
However, this could be dangerous because there are a ton of rules not currently being applied that could cause things to break.
Metadata
Metadata
Assignees
Labels
No labels