jordan boyer

Results 9 comments of jordan boyer

I've setup a monorepo at work without nx-plus, and after some test nx seems to work without any change on .vue files So maybe they can drop the patch entirely

Just to let you know i did find a workaround. I've use an env variable to disabled nuxt-seo-kit when launching histoire `DISABLED_SEO=true histoire dev` But in don't really like the...

I'm so sorry for the delay. `-I` seems to be a good start but it does not really work for my use case. Like I said before, I want to...

For achieving the same result between valita and zod ```ts // Valita const personSchemaInput = v.object({ name: v.string().default('john').optional(), age: v.number(), }); const personSchemaOutput = v.object({ name: v.string(), age: v.number(), });...

Yes ofc. In our app we use service to call our backend, and we have multiple interface to create some types of object. So our service provide some usefull defaults,...

Here another example of why we need to have two specific type. I'll take the same example as above ```ts // good input wrong output const personSchemaInput = v.object({ name:...

We finally solved this problem with another approach. ```ts import { object, number, string, optional, Banditype } from 'banditypes' type Simplify = T extends Object ? { [K in keyof...

I'm not sure how to tackle this one if you have an idea let me know and i'll try to help implement it =)

no-const-assign cannot have a fixer because we cannot infer the intend of the user . Or we can add a dangerous fix that will replace the const with a let....