Description
Upstream: facebook/react#21869
In React 18 (currently in alpha), components may render undefined
, and React will render nothing to the DOM instead of throwing an error. This allows components that don't render anything useful (such as optional rendering or components that rely on side effects from hooks or lifecycles) to return undefined
instead of explicitly returning null
. However, accidentally rendering nothing in a component could still cause surprises (which is why require-return-return
exists, though it's only for class components). Additionally, a team may want to have a code style guideline of explicitly returning undefined
to prevent components from accidentally doing nothing. The React team seems to be recommending that users use linters to catch this issue in React 18 (since React itself will no longer warn), though it's up to debate whether this is something we'd want to enforce by default, as not rendering anything is valid as of React 18.
Possible approaches
Add functionality to require-render-return
We could extend this rule to include function components that return undefined
and class components that explicitly return undefined
. Documentation should be updated to reflect that this rule affects more components and may not be necessary in React 18. This would technically be a breaking change for React 18 users, as it's potentially valid for them to return undefined
, and the rule is recommended.
Add new rule
Rather than put all functionality in an existing rule that could affect existing configs, we could create a separate rule such as no-render-return
that covers all these use cases. We may want to deprecate and stop recommending require-render-return
in this case, as it would have a subset of this rule's functionality.
Activity