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

feat(fe): add warning for 'let({x} = y);' #1211

Closed
wants to merge 3 commits into from

Commits on Mar 11, 2024

  1. feat(fe): add warning for 'let({x} = y);'

    Added a new diagnostic E0720 that closes quick-lint#1203. Issues a warning when a
    function let() is called on an object assignment expression.
    
    quick-lint#1203
    msharipov committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    92e704e View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. fix(fe): corrected diagnostic for E0720

    E0720 diagnostic did not properly check whether the callee is the 'let'
    function. The naming of the diagnostic was also changed to use 'confusing'
    instead of 'ambiguous' to more accurately reflect the underlying issue.
    msharipov committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    1d91f52 View commit details
    Browse the repository at this point in the history
  2. fix(docs): correct documentation for E0720

    The documentation for E0720 did not follow the usual format and did not
    properly explain what the issue was and how to fix it.
    msharipov committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    105d5ce View commit details
    Browse the repository at this point in the history