diff --git a/.editorconfig b/.editorconfig index 7fb1375..7b57541 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,13 +1,17 @@ -# https://EditorConfig.org -# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties +# More on EditorConfig: https://editorconfig.org/ +# VS Code Extension: https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig root = true [*] +indent_style = space +indent_size = 4 end_of_line = lf -insert_final_newline = true +charset = utf-8 trim_trailing_whitespace = true +insert_final_newline = true + +[*.sh] indent_style = space -charset = utf-8 -indent_size = 4 -max_line_length = 80 +indent_size = 2 +executable = true