Closed iamfinky closed 6 years ago
Hi
I've just discovered a minor flag in the YAML implementation.
In my yaml file, I have:
somekey: a,b,c,d,e,f
and in my struct, I have:
type test struct { SomeKey []string }
The YAML is officially valid, but causes a parse error
Hey @ilithium, multiconfig uses gopkg.in/yaml.v2 for YAML parsing, you may want to report this issue upstream - https://github.com/go-yaml/yaml.
gopkg.in/yaml.v2
Hi
I've just discovered a minor flag in the YAML implementation.
In my yaml file, I have:
and in my struct, I have:
The YAML is officially valid, but causes a parse error