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(no-unused-props): handle alias props name properly #1178

Merged
merged 2 commits into from
Apr 1, 2025
Merged

Conversation

baseballyama
Copy link
Member

@baseballyama baseballyama commented Mar 31, 2025

close: #1172
close: #1182

This PR currently has a false negative in the following case (test is unused but not reported):
I’d like to resolve this issue, but wasn’t able to find a good solution in a short time, so I’ve temporarily given up. I’m looking for someone who can help address this issue.

<script lang="ts">
	type Props = {
		test: string;
		'aria-label'?: string;
	};

	const { 'aria-label': test }: Props = $props();
</script>

{test}

Copy link

changeset-bot bot commented Mar 31, 2025

🦋 Changeset detected

Latest commit: c8c404a

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
eslint-plugin-svelte Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

github-actions bot commented Mar 31, 2025

Try the Instant Preview in Online Playground

ESLint Online Playground

Install the Instant Preview to Your Local

npm i https://pkg.pr.new/eslint-plugin-svelte@c8c404a

Published Instant Preview Packages:

View Commit

@baseballyama baseballyama marked this pull request as ready for review April 1, 2025 13:05
@baseballyama baseballyama merged commit 7892f4c into main Apr 1, 2025
17 checks passed
@baseballyama baseballyama deleted the fix/1172 branch April 1, 2025 13:09
@benoitf
Copy link

benoitf commented Apr 3, 2025

hello @baseballyama it looks like it doesn't work if there is a default value

something like

const { 'aria-label': test = ''}: Props = $props();

vs existing test

const { 'aria-label': test}: Props = $props();

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