We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just upgraded from "eslint": "^6.1.0", "eslint-plugin-react": "^7.14.2" to "eslint": "^6.5.1", "eslint-plugin-react": "^7.15.1".
"eslint": "^6.1.0", "eslint-plugin-react": "^7.14.2"
"eslint": "^6.5.1", "eslint-plugin-react": "^7.15.1"
Running yarn eslint ./src --fix removes any instance of a {' '} since a new line now creates a space in React jsx like:
yarn eslint ./src --fix
{' '}
<div> Hello {' '} World </div> > Hello World
--fix now changes to:
<div> Hello World </div> > Hello World
But if I have html within that, it removes the space and the newline does not create a space. For example:
<div> Hello<sup>*</sup> {' '} World </div> > Hello* World
<div> Hello<sup>*</sup> World </div> > Hello*World (missing space)
I suspect this breaking change caused this #2422
The text was updated successfully, but these errors were encountered:
This will be fixed in #2437.
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
I just upgraded from
"eslint": "^6.1.0", "eslint-plugin-react": "^7.14.2"
to"eslint": "^6.5.1", "eslint-plugin-react": "^7.15.1"
.Running
yarn eslint ./src --fix
removes any instance of a{' '}
since a new line now creates a space in React jsx like:--fix now changes to:
But if I have html within that, it removes the space and the newline does not create a space. For example:
--fix now changes to:
I suspect this breaking change caused this #2422
The text was updated successfully, but these errors were encountered: