Devinda Senanayaka
Devinda Senanayaka
I believe this question should be better labeled `Last of tupple` xd
Anytime I render any component using the jest + react testing library, the toast manager is also included in that render. Is there any workaround for this problem? For example,...
@rym002 while i've been unable to do a proper fix as the package itself uses react 17, the solution explained above should allow you to patch this.
> however, people really shouldn’t be using the recommended config - the Airbnb config has the best default config for this plugin. Could you expound a bit on this please...
The airbnb import is indeed way more extensive. I'm relatively new to configuring eslint in depth, so would it make sense to do somthing like `extends: [ ..., "airbnb-base:imports"]`. If...
I think i agree with @ljharb here. While not everyone uses airbnb's config (me included), it appears to me that this plugin was built as a part of the airbnb...
There is a new case ```typescript // @ts-expect-error Shift ``` Constraining the generic as an array seems to do the trick! ```typescript type Shift = T extends [infer S, ...infer...
There is a new test case that expects an error ```ts interface UserPartialNameAndAge { name?: string; age?: number; address: string; } // @ts-expect-error Expect, ``` This can be solved for...
This will also fix #78 . However, before the reduce we should verify that each instance is a zod object. Else we can return `{ parseInputResult: "failure" };`
Phew this fixed my config issue too, I'm kinda new to using treesitter, is there a way I could have debugged this than just lucking out on the solution ?