mirror of
https://github.com/mikefarah/yq.git
synced 2024-12-19 20:19:04 +00:00
Added missing flow style
This commit is contained in:
parent
71f5f76213
commit
e90b00957b
@ -27,6 +27,8 @@ func (v *valueParser) Parse(argument string, customTag string, customStyle strin
|
|||||||
style = yaml.LiteralStyle
|
style = yaml.LiteralStyle
|
||||||
} else if customStyle == "folded" {
|
} else if customStyle == "folded" {
|
||||||
style = yaml.FoldedStyle
|
style = yaml.FoldedStyle
|
||||||
|
} else if customStyle == "flow" {
|
||||||
|
style = yaml.FlowStyle
|
||||||
} else if customStyle != "" {
|
} else if customStyle != "" {
|
||||||
log.Error("Unknown style %v, ignoring", customStyle)
|
log.Error("Unknown style %v, ignoring", customStyle)
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,7 @@ var parseStyleTests = []struct {
|
|||||||
{"double", yaml.DoubleQuotedStyle},
|
{"double", yaml.DoubleQuotedStyle},
|
||||||
{"single", yaml.SingleQuotedStyle},
|
{"single", yaml.SingleQuotedStyle},
|
||||||
{"folded", yaml.FoldedStyle},
|
{"folded", yaml.FoldedStyle},
|
||||||
|
{"flow", yaml.FlowStyle},
|
||||||
{"literal", yaml.LiteralStyle},
|
{"literal", yaml.LiteralStyle},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user