You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constComponent=()=>(<ViewListFooterComponent={(<ViewrowSpan={3}placeholder="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do"/>)}// <--- note this is misaligned/>);
Should be:
constComponent=()=>(<ViewListFooterComponent={(<ViewrowSpan={3}placeholder="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do"/>)}/>);
This is now considered a warning (wasn't before):
<App>{condition&&(<Hello/>)}</App>
Should be:
<App>{condition&&(<Hello/>)}</App>
The text was updated successfully, but these errors were encountered:
Might need to revert this if there's some cases I haven't thought of, but I'm going to ship it and wait for the complaints (if any). I want to get all these JSX rules out at the same time.
https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-indent.md
We already have this rule enabled, but I want to add more options to the rule.
Before:
After:
This is now considered a warning (wasn't before):
Should be:
This is now considered a warning (wasn't before):
Should be:
The text was updated successfully, but these errors were encountered: