mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
35 lines
998 B
Go
35 lines
998 B
Go
package yqlib
|
|
|
|
type YamlPreferences struct {
|
|
Indent int
|
|
ColorsEnabled bool
|
|
LeadingContentPreProcessing bool
|
|
PrintDocSeparators bool
|
|
UnwrapScalar bool
|
|
EvaluateTogether bool
|
|
}
|
|
|
|
func NewDefaultYamlPreferences() YamlPreferences {
|
|
return YamlPreferences{
|
|
Indent: 2,
|
|
ColorsEnabled: false,
|
|
LeadingContentPreProcessing: true,
|
|
PrintDocSeparators: true,
|
|
UnwrapScalar: true,
|
|
EvaluateTogether: false,
|
|
}
|
|
}
|
|
|
|
func (p *YamlPreferences) Copy() YamlPreferences {
|
|
return YamlPreferences{
|
|
Indent: p.Indent,
|
|
ColorsEnabled: p.ColorsEnabled,
|
|
LeadingContentPreProcessing: p.LeadingContentPreProcessing,
|
|
PrintDocSeparators: p.PrintDocSeparators,
|
|
UnwrapScalar: p.UnwrapScalar,
|
|
EvaluateTogether: p.EvaluateTogether,
|
|
}
|
|
}
|
|
|
|
var ConfiguredYamlPreferences = NewDefaultYamlPreferences()
|