From a92d137a5986972bbfbfef202db01e47c6ee5c79 Mon Sep 17 00:00:00 2001 From: Victoria <126434697+vicpsantana@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:44:21 -0300 Subject: [PATCH] Update .editorconfig Signed-off-by: Victoria <126434697+vicpsantana@users.noreply.github.com> --- .editorconfig | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.editorconfig b/.editorconfig index 49587f8..7b57541 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,13 +1,17 @@ -# EditorConfig is awesome: http://EditorConfig.org -# Use editorconfig to maintain consistent coding styles +# More on EditorConfig: https://editorconfig.org/ +# VS Code Extension: https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig root = true [*] -charset = utf-8 -end_of_line = lf -indent_size = 2 indent_style = space -insert_final_newline = true -max_line_length = 80 +indent_size = 4 +end_of_line = lf +charset = utf-8 trim_trailing_whitespace = true +insert_final_newline = true + +[*.sh] +indent_style = space +indent_size = 2 +executable = true