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
no-unused-vars
const { foo, bar: baz = foo } = { foo: 1 };
No lint errors
foo is marked as unused variable.
foo
The alias : baz seems to mask the relation of bar = foo.
: baz
bar = foo
deno 2.1.9 (stable, release, aarch64-apple-darwin) v8 13.0.245.12-rusty typescript 5.6.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Lint Name
no-unused-vars
Code Snippet
Expected Result
No lint errors
Actual Result
foo
is marked as unused variable.Additional Info
The alias
: baz
seems to mask the relation ofbar = foo
.Version
deno 2.1.9 (stable, release, aarch64-apple-darwin)
v8 13.0.245.12-rusty
typescript 5.6.2
The text was updated successfully, but these errors were encountered: