Closed
Description
openedon Mar 4, 2023
Is there an existing issue for this?
- I have searched the existing issues and my issue is unique
- My issue appears in the command-line and not only in the text editor
Description Overview
export default () => <h1>
<span>
hello
</span>
</h1>;
No fix applied
Expected Behavior
Auto fix correct code to:
export default () => (
<h1>
<span>
hello
</span>
</h1>
);
eslint-plugin-react version
v7.32.2
eslint version
v8.35.0
node version
v18.14.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment