Separate formatters in config

This commit is contained in:
Dan Jones 2024-03-07 21:19:45 -06:00
commit da3b524925
6 changed files with 56 additions and 11 deletions

View file

@ -27,8 +27,14 @@ dotFolder = true
[output.stdout]
enabled = true
[output.stdout.config]
# Whether to output as JSON. Maybe useful to pipe elsewhere.
json = false
# Formatter to use when outputting to stdout
formatter = "plain"
[formatters]
[formatters.json]
# Set to true to pretty print JSON output
pretty_print = false
`