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: added the prefer-svelte-reactivity rule #1151

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

marekdedic
Copy link
Contributor

@marekdedic marekdedic commented Mar 24, 2025

Copy link

changeset-bot bot commented Mar 24, 2025

🦋 Changeset detected

Latest commit: 7603712

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 Minor

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

@marekdedic marekdedic force-pushed the prefer-svelte-reactivity branch from d061a99 to 6999c90 Compare March 24, 2025 09:03
Copy link
Contributor

github-actions bot commented Mar 24, 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@1151

Published Instant Preview Packages:

View Commit

@marekdedic marekdedic force-pushed the prefer-svelte-reactivity branch from 6999c90 to 5cede00 Compare March 24, 2025 09:23
@marekdedic marekdedic force-pushed the prefer-svelte-reactivity branch from 5cede00 to f44a65c Compare March 24, 2025 09:25
Copy link
Member

@baseballyama baseballyama left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need to add tests for .svelte.js files also.

Comment on lines +1 to +5
<script>
const variable = new Date(8.64e15);
</script>

{variable}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don’t think this needs to be reported. If there’s no reassignment, it shouldn’t need to be reactive.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not about reassignment, it's about internal changes. I'd prefer to be this overly-broad. The alternative is tracking calls to every method that modifies the object (I count 16 on Date alone) or writing to any property.

On top of that, once something is exported, it should be reported as well (mostly relevant for .svelte.ts files)

I am not sure it's worth it, what do you think?

Copy link
Member

@baseballyama baseballyama Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What I’m saying is the same thing.

// It should be SvelteMap because there is internal changes.
const foo = new Map();
foo.set("a", 0);

// It should not be reported because there is no internal changes.
const bar = new Map();

On top of that, once something is exported, it should be reported as well (mostly relevant for .svelte.ts files)

If we think of svelte.js as “reactive files,” it should be fine to report aggressively.

@marekdedic
Copy link
Contributor Author

I think we need to add tests for .svelte.js files also.

Yes, I wanted to ask about whether that's something we're set up to do, I couldn't find any such tests on the repo...

@marekdedic
Copy link
Contributor Author

@ota-meshi Can you please take a look at the test file? I tried the solution from eslint-community/eslint-utils#249 (comment), but it didn't work for me :/

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

Successfully merging this pull request may close these issues.

Add rule prefer-svelte-reactivity
2 participants