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

fix(eslint-plugin): [space-infix-ops] fix no error when right type is function #4848

Merged

Commits on Apr 22, 2022

  1. fix(eslint-plugin): [space-infix-ops] no error when right type

    is function
    
    No errors were thrown when the right type is a function when no
    space between union or intersection operator. Function types are
    wrapped inside parenthesize. If the right type is function, instead of
    getting the operator, it was always getting the function parenthesize.
    The fix providedd skips wrapped parenthesize for function type, so that
    operator will be properly identified.
    tapanprakasht committed Apr 22, 2022
    Copy the full SHA
    71ff1a2 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    4e665b7 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2022

  1. fix: edge case where function has multiple

    parenthesis
    tapanprakasht committed Apr 23, 2022
    Copy the full SHA
    c4807f0 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    ce78801 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    55b100f View commit details
    Browse the repository at this point in the history