Rohan Verma

Results 43 comments of Rohan Verma

## Field-Level Float Formatting via Struct Tags I looked into whether we could use struct tags like `json:"value,noexponent"` to control float formatting per-field, instead of relying on global CLI flags....

As a workaround, you can read directly from the dest map instead of calling `k.String()` - e.g. `env, _ := dest["env"].(string)`. The dest parameter is the current config map, so...