currently, `only-used-in-recursion` only supports cases such as: ```ts function foo(arg0) { foo(arg0) } ``` it could be expanded to support cases such as: ```ts function Listitem({ depth }) { return <Listitem depth={depth + 1} /> } ``` cc @no-yan