-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 7603712 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
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 |
d061a99
to
6999c90
Compare
Try the Instant Preview in Online PlaygroundInstall the Instant Preview to Your Local
Published Instant Preview Packages:
|
6999c90
to
5cede00
Compare
5cede00
to
f44a65c
Compare
There was a problem hiding this 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.
<script> | ||
const variable = new Date(8.64e15); | ||
</script> | ||
|
||
{variable} |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
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... |
@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 :/ |
Closes #1071
Blocked by eslint-community/eslint-utils#249