From 9044a70330e7c29ede2a6bc3d40629125f1da172 Mon Sep 17 00:00:00 2001 From: Ash258 Date: Fri, 16 Mar 2018 23:08:40 +0100 Subject: [PATCH] Add missing yml rule in .editorconfig Yaml (yml) files have to be indented by spaces. --- .editorconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.editorconfig b/.editorconfig index f2e7f7d0..59b8db48 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,3 +8,8 @@ root = true end_of_line = lf insert_final_newline = true indent_style = tab +tab_width = 2 + +[*{yml,yaml}] +indent_style = space +indent_size = 2