From 72f8484074a1fe66ee5bf9f66804402cb3bda19c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Fri, 6 Oct 2023 15:27:51 +0200 Subject: [PATCH] chore(editorconfig): add indentation settings for shell scripts (#1296) --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 09950a3c1..8d3b38eec 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,3 +14,7 @@ charset = utf-8 indent_style = space indent_size = 4 +# Indentation settings for shell scripts +[*.sh] +indent_style = space +indent_size = 2