Geoffroy Vincent
Geoffroy Vincent
I wonder if it could be possible to have a `config` or `params` module, that would work similarly to `driver` and `dialect` (with specialized sub-modules to separate dependencies). ``` config...
To complete my last message, it could ressemble something like this: ```go db, err := config.NewClient(config.Config{ Driver: pgconfig.Config{ // This could possibly be handled elegantly with generics? DSN: "blablabla", },...
If someone is interested in the issue or wants an alternative solution, I made a "poc" of my idea based on previous work. I'll use it for now, not loosing...
I don't think it makes sense that `NewNil...` takes a direct value. I'd use `Nil`ish types, because I expect the underlying data to be a pointer in the actual logic...
Thanks ! I agree that the color scheme is aggressive, softer schemes can be experimented, to accommodate most terminals. The `--format-color-full` could be a solution, maybe as a later option....
Got the issue again after upgrade to `vitest >= v4.0.0`. I reverted to `vitest v3.2.4` and it worked fine
Thanks for the detailed answer! This is an accurate depiction of my current usage of i18next. I have a package that handles authentication, and comes with its own translation for...