From 18f1d62810f3fc5a4d6ff98284d4fea6ca8bc7b7 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Fri, 6 Nov 2020 21:44:21 -0500 Subject: [PATCH] Add yaml and bash file handling --- languages/c.editor_config | 2 +- languages/c_sharp.editorconfig | 2 +- languages/python.editorconfig | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/languages/c.editor_config b/languages/c.editor_config index 050691c..71375f5 100644 --- a/languages/c.editor_config +++ b/languages/c.editor_config @@ -26,7 +26,7 @@ trim_trailing_whitespace = true # Tab styles that should be four spaces per tab. # Most languages will fall under this. ## -[*.{c,cc,cpp,h,json,md,o}] +[*.{c,cc,cpp,h,json,md,o,sh,yaml}] indent_size = 4 diff --git a/languages/c_sharp.editorconfig b/languages/c_sharp.editorconfig index 34d9aec..e2ed691 100644 --- a/languages/c_sharp.editorconfig +++ b/languages/c_sharp.editorconfig @@ -26,7 +26,7 @@ trim_trailing_whitespace = true # Tab styles that should be four spaces per tab. # Most languages will fall under this. ## -[*.{cs,json,md,xml}] +[*.{cs,json,md,sh,yaml,xml}] indent_size = 4 diff --git a/languages/python.editorconfig b/languages/python.editorconfig index 4af77b1..e7d0749 100644 --- a/languages/python.editorconfig +++ b/languages/python.editorconfig @@ -26,7 +26,7 @@ trim_trailing_whitespace = true # Tab styles that should be four spaces per tab. # Most languages will fall under this. ## -[*.{json,md,py}] +[*.{json,md,py,sh,yaml}] indent_size = 4 -- GitLab