From 935967b2bfb6581e11630f02d9f9f587031cad5d Mon Sep 17 00:00:00 2001 From: eitsupi <50911393+eitsupi@users.noreply.github.com> Date: Tue, 15 Mar 2022 13:29:07 +0900 Subject: [PATCH] Add new editorconfig rules for shell script (#389) --- .editorconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 44089cff..bf8f6973 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,9 @@ [*.json] indent_style = space indent_size = 2 -insert_final_newline = true \ No newline at end of file +insert_final_newline = true + +[*.sh] +indent_style = space +indent_size = 4 +insert_final_newline = true