From 989f2eaa3e0d55fbb4b2c0460b4a6f7b5bd5ff53 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Tue, 28 Feb 2017 18:42:09 -0300 Subject: [PATCH] Indent TOML in example file --- .editorconfig | 2 +- example/Taskfile.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) 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"]