We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the following will cause a generic React Native error on Android, with no line number or file. This makes debugging difficult:
<Tag> {children}</Tag> (see facebook/react-native#18773)
<Tag> {children}</Tag>
It would be nice if tslint could catch these extra spaces in single-line JSX for me.
Alternatively, a more brutish approach could be to disallow single line JSX entirely, but that isn't a great solution.
*by single-line JSX I mean lines with the opening and closing tags on the same line
The text was updated successfully, but these errors were encountered:
Seems to be addressed in ESLint according to that issue thread you linked. Also closing due to #210
Sorry, something went wrong.
Fair enough, thanks @adidahiya
No branches or pull requests
Currently, the following will cause a generic React Native error on Android, with no line number or file. This makes debugging difficult:
<Tag> {children}</Tag>
(see facebook/react-native#18773)
It would be nice if tslint could catch these extra spaces in single-line JSX for me.
Alternatively, a more brutish approach could be to disallow single line JSX entirely, but that isn't a great solution.
*by single-line JSX I mean lines with the opening and closing tags on the same line
The text was updated successfully, but these errors were encountered: