mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
16 lines
332 B
Go
16 lines
332 B
Go
package yqlib
|
|
|
|
type PropertiesPreferences struct {
|
|
KeyValueSeparator string
|
|
UseArrayBrackets bool
|
|
}
|
|
|
|
func NewDefaultPropertiesPreferences() PropertiesPreferences {
|
|
return PropertiesPreferences{
|
|
KeyValueSeparator: " = ",
|
|
UseArrayBrackets: false,
|
|
}
|
|
}
|
|
|
|
var ConfiguredPropertiesPreferences = NewDefaultPropertiesPreferences()
|