mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
20 lines
475 B
Go
20 lines
475 B
Go
|
package yqlib
|
||
|
|
||
|
type YamlPreferences struct {
|
||
|
LeadingContentPreProcessing bool
|
||
|
PrintDocSeparators bool
|
||
|
UnwrapScalar bool
|
||
|
EvaluateTogether bool
|
||
|
}
|
||
|
|
||
|
func NewDefaultYamlPreferences() YamlPreferences {
|
||
|
return YamlPreferences{
|
||
|
LeadingContentPreProcessing: true,
|
||
|
PrintDocSeparators: true,
|
||
|
UnwrapScalar: true,
|
||
|
EvaluateTogether: false,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var ConfiguredYamlPreferences = NewDefaultYamlPreferences()
|