-
-
Notifications
You must be signed in to change notification settings - Fork 243
fix(eslint-plugin): [prefer-signals] support linkedSignal #2213
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(eslint-plugin): [prefer-signals] support linkedSignal #2213
Conversation
View your CI Pipeline Execution ↗ for commit e0f7bc3.
☁️ Nx Cloud last updated this comment at |
7b8b30e
to
216b3e2
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.
Tests are broken, you're using symbols without importing them
Hi @JamesHenry |
`linkedSignal` has been introduced in Angular v19, and it should be checked for `readonly` as the other signals.
4f2018e
to
243568d
Compare
It looks like what was a suggestion is now an autofix. PR should be OK now (tests are green), but the CI failed. Let me know if I need to do something else. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2213 +/- ##
=======================================
Coverage 90.44% 90.44%
=======================================
Files 177 177
Lines 3527 3527
Branches 593 593
=======================================
Hits 3190 3190
Misses 183 183
Partials 154 154
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Thanks @cexbrayat! |
linkedSignal
has been introduced in Angular v19, and it should be checked forreadonly
as the other signals.