We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no-unused-props
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
9.23.0
eslint-plugin-svelte
3.3.3
<!-- Paste your configuration here -->
<script lang="ts"> type Props = { foo: string; }; const props: Props = $props(); console.log(props); </script>
No lint error
<script lang="ts"> interface Props { foo: string; } const props: Props = $props(); console.warn(props); </script>
No response
The text was updated successfully, but these errors were encountered:
$props
props
Successfully merging a pull request may close this issue.
Before You File a Bug Report Please Confirm You Have Done The Following...
What version of ESLint are you using?
9.23.0
What version of
eslint-plugin-svelte
are you using?3.3.3
What did you do?
Configuration
What did you expect to happen?
No lint error
What actually happened?
Link to GitHub Repo with Minimal Reproducible Example
Additional comments
No response
The text was updated successfully, but these errors were encountered: