import _ from 'lodash'
const x = _.add(3, 2) // This code will not trigger a linting error
const foo = _.flow(
_.add, // @typescript-eslint/unbound-method
square,
)
You can find the full error description at this link.
Is there any specific reason why using lodash's flow() function disrupts its own add() method? Is there a workaround for this issue?