-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
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
Fix void-dom-elements-no-children crash #1226
Conversation
React.createElement() crashes the linter since first argument is undefined.
@@ -54,6 +54,10 @@ ruleTester.run('void-dom-elements-no-children', rule, { | |||
}, { | |||
code: 'React.createElement("img");' | |||
}, { | |||
code: 'React.createElement();' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like this shouldn't be valid; altho maybe this rule shouldn't be handling it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, a different rule that checks for required parameters to React methods would be good. Maybe it could even give a hint on the order and nature of the parameters without needing to go to the docs.
Thanks! |
React.createElement()
currently crashes the linter with the following error and linting doesn't happen:Of course
React.createElement()
will cause a runtime error, but it shouldn't crash the linter.