Expand signature rewriting to allow returning ResolvedVc from turbo task functions (#94772)
Delete the ast-Grep lint rules about returning ResolvedVc.
These rules around were incorrect. They failed to account for the fact
that value_trait items require function annotations and even worse the
follows specifier was overly broad. Meaning you would get a warning for
any function in a file returning ReaolvedVc if there was a turbo task
function above it. 🤦♂️
The issue these rules were preventing is trivially fixable so I just did
that. So now you can return a ResolvedVc. It's fine.