Skip to content
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

[eslint-plugin-react-hooks]: handling empty element in array #19145

Merged
merged 1 commit into from Jun 17, 2020

Conversation

yeonjuan
Copy link
Contributor

…lback

Summary

"eslint-plugin-reack-hooks" throw Error when listing "useEffect" if there are empty elements in the array. I added checking whether the element is null or not.

  • code
useEffect(foo, [, foo]);
  • error
TypeError: Cannot read property 'type' of null
Occurred while lining .../tests/test.ts:1
    at /Users/.../eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:838:23
    at Array.some (<anonymous>)

Test Plan

function MyComponent({myEffect}) {
    useEffect(myEffect, [,myEffect]);
}
function MyComponent({myEffect}) {
     useEffect(myEffect, [,myEffect,,]);
}

@facebook-github-bot
Copy link

Hi @yeonjuan!

Thank you for your pull request and welcome to our community.We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file.

In order for us to review and merge your code, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA.

If you have received this in error or have any questions, please contact us at cla@fb.com. Thanks!

@codesandbox-ci
Copy link

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit 0a34865:

Sandbox Source
competent-moore-3h7jj Configuration

@sizebot
Copy link

sizebot commented Jun 17, 2020

No significant bundle size changes to report.

Size changes (stable)

Generated by 🚫 dangerJS against 0a34865

@sizebot
Copy link

sizebot commented Jun 17, 2020

No significant bundle size changes to report.

Size changes (experimental)

Generated by 🚫 dangerJS against 0a34865

@facebook-github-bot
Copy link

Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Facebook open source project. Thanks!

Copy link
Contributor

@bvaughn bvaughn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants