1
0
mirror of https://github.com/go-task/task.git synced 2025-08-08 22:36:57 +02:00

Indent TOML in example file

This commit is contained in:
Andrey Nering
2017-02-28 18:42:09 -03:00
parent a53fcf8bba
commit 989f2eaa3e
2 changed files with 5 additions and 2 deletions

View File

@ -9,6 +9,6 @@ trim_trailing_whitespace = true
indent_style = tab
indent_size = 8
[*.{md,yml}]
[*.{md,yml,yaml,json,toml}]
indent_style = space
indent_size = 2

View File

@ -1,3 +1,6 @@
[hello]
cmds = ["echo \"I am going to write a file named 'output.txt' now.\"", "echo \"hello\" > output.txt"]
cmds = [
"echo \"I am going to write a file named 'output.txt' now.\"",
"echo \"hello\" > output.txt"
]
generates = ["output.txt"]