yq/cmd/constant.go

31 lines
597 B
Go
Raw Normal View History

package cmd
var leadingContentPreProcessing = true
2020-04-13 01:03:18 +00:00
var unwrapScalar = true
2020-11-13 03:07:11 +00:00
2020-11-29 09:25:47 +00:00
var writeInplace = false
var outputToJSON = false
2021-07-25 08:08:33 +00:00
var outputFormat = "yaml"
2021-12-21 04:02:07 +00:00
var inputFormat = "yaml"
var xmlAttributePrefix = "+"
var xmlContentName = "+content"
2020-11-13 03:07:11 +00:00
2020-11-30 05:35:21 +00:00
var exitStatus = false
2020-10-27 05:45:16 +00:00
var forceColor = false
var forceNoColor = false
2020-02-27 13:29:13 +00:00
var colorsEnabled = false
2020-02-03 05:52:12 +00:00
var indent = 2
2020-11-13 02:35:59 +00:00
var noDocSeparators = false
2020-11-06 03:37:01 +00:00
var nullInput = false
var verbose = false
var version = false
2020-12-28 00:40:41 +00:00
var prettyPrint = false
2020-11-30 05:05:07 +00:00
2021-07-18 02:28:46 +00:00
// can be either "" (off), "extract" or "process"
var frontMatter = ""
2021-10-29 03:14:39 +00:00
var splitFileExp = ""
2020-11-30 05:05:07 +00:00
var completedSuccessfully = false