You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the YAML spec (and common sense) keys in YAML-mappings should be a set of unique values. I frequently encounter errors (originating from tiny typos of mine), where a document (or mapping within a document) like
fu: barfu: baz
is interpreted like
fu: baz
and the duplicate key issue is silently ignored.
Would it be possible to at least have an option to treat duplicate keys as deserialization errors?