yqlib, default to colors off when using yaml library #1964

This commit is contained in:
Mike Farah 2024-03-07 10:55:44 +11:00
parent b5e3a01452
commit 93ed666000

View File

@ -12,7 +12,7 @@ type YamlPreferences struct {
func NewDefaultYamlPreferences() YamlPreferences {
return YamlPreferences{
Indent: 2,
ColorsEnabled: true,
ColorsEnabled: false,
LeadingContentPreProcessing: true,
PrintDocSeparators: true,
UnwrapScalar: true,