diff --git a/.editorconfig b/.editorconfig index eaf5a761..3cf19174 100644 --- a/.editorconfig +++ b/.editorconfig @@ -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 diff --git a/example/Taskfile.toml b/example/Taskfile.toml index eaaac968..c9e53661 100644 --- a/example/Taskfile.toml +++ b/example/Taskfile.toml @@ -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"]