Closed
Description
A common issue that beginners run into is relying on async code in a computed property function, even though we warn about it in the docs. This might not be possible to identify 100% of the time, but it would be nice for the linter to warn about:
async
/await
- passing a function as a function argument (covers promises and callbacks)
Am I missing any cases where either of the above would actually be valid inside a computed property function?