tooManyReturnValuesHook returns more than {{count}} values. Return an object with named properties instead.small-rules/react-hooks-strict-returnRestrict React hooks to object returns or short tuples.
tooManyReturnValuesHook returns more than {{count}} values. Return an object with named properties instead.This rule does not accept options.
function useFoo() { return [1, 2, 3] }function useFoo() { return [1] }