Ulrich Stark
Ulrich Stark
Also #6787 sounds similar, but is about `npm install` and not about `npm update`
> Please use npm >= 11.6.3 to generate package-lock and when installing in CI. See [problems with lower versions](https://github.com/npm/cli/issues/8535#issuecomment-3627452551). Thanks, but the issue is still present even when using npm...
This was a pretty tricky change to get right. Coverage is at 100%, it reported multiple cases while dogfooding, I turned the false positives into test cases and fixed the...
At least two missing cases that I need to fix: ```ts declare function fn(param: number); fn(42 as unknown as number); ``` ```ts declare function fn(param: number); fn(42 as any as...
> [@ulrichstark](https://github.com/ulrichstark) , there will be a release out in a minute that resolves this. Let us know if it works as expected. Hey thanks for letting me know. My...
Also the same issue is happening when clicking a `` that navigates to a route with a server function throwing `notFound()`. [I added a test route](https://github.com/ulrichstark/tanstack-repro-isNotFound-on-hmr/commit/7eb6c0322f19d19585301174b5d1e6230435e8b6) to my repro project....
Thanks for the explanation! Your reasoning makes sense. Then what do you think about adding a new rule that catches name collisions between type and value namespace? Because today I...
Thanks Josh for your review! I already made all low effort changes. Do you also want me to turn the suggestion into a fix? I think it's safe in every...
Feedback implemented, turned suggestion into fix, improved examples in docs and increased test coverage. I'm ready!
100% test coverage 🎉