Results 10 comments of Kyri

I had the same issue and fixed it by providing a `schema` inside `dbconfig.yaml`: ``` development: dialect: postgres datasource: host=localhost port=5432 dbname=test user=user password=pass sslmode=disable dir: migrations schema: account table:...

`time.Duration` is an [alias](https://github.com/golang/go/blob/master/src/time/time.go#L588-L591) to `int64` and represents an elapsed time in nanoseconds, so converting an integer to a `time.Duration` directly using a typecast, e.g. `time.Duration(1000)`, is a valid use...

I'm leaning against this since I'd like to keep fig as a simple configuration library that does few things and does them well. More complex use cases would better be...

Hi @mojixcoder, when loading from the environment using fig, it's important to consider the hierarchical nature of structs, especially when dealing with nested structs. Consider the following example: ```go type...

I'm hesitant on adding a new struct tag, as it increases cognitive complexity and introduces potential confusion regarding the precedence of various struct tags. An alternative could involve specifying an...

You should iterate and only split when an uppercase letter is preceded by a lowercase letter, so in your example `USA` would remain `USA`.

I pulled latest changes and tried the workarounds mentioned above but still seeing the same issue. If I build without the sourcery requirement the build works but I'm running into...

Are there any plans to support this?

Your proposal sounds good @ThorpeJosh. I'll add that we should put this behind an option, e.g. `UseEnvFile()`, so that it's backwards compatible. However, I'm not currently actively maintaining this repo....

I am getting flashing despite the suggested solution. I have this in my React component: ```js "use client"; import { ImgComparisonSlider } from "@img-comparison-slider/react"; ... ``` And in my `globals.css`:...