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
const { foo } = formValueObject; let bar; let bar[foo ?? 999] = 42;
eslint(no-const-assign): Unexpected re-assignment of const variable foo
let bar = []; bar[parseInt("42", 10)] = 99;
eslint(no-global-assign): Read-only global 'parseInt' should not be modified.
The text was updated successfully, but these errors were encountered:
fix(semantic): incorrect reference flag for MemberExpression assign (#…
5bd2ce6
…2433) fix: #2432
Thank you.
Sorry, something went wrong.
fix(semantic): incorrect reference flag for MemberExpression assign (o…
028cf5c
…xc-project#2433) fix: oxc-project#2432
Dunqing
Successfully merging a pull request may close this issue.
eslint(no-const-assign): Unexpected re-assignment of const variable foo
eslint(no-global-assign): Read-only global 'parseInt' should not be modified.
The text was updated successfully, but these errors were encountered: