diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..57e7585 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,27 @@ +########################################## +# Common Settings +########################################## + +# This file is the top-most EditorConfig file +root = true + +# All Files +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +########################################## +# File Extension Settings +########################################## + +# Markdown Files +[*.md] +trim_trailing_whitespace = true + +# Bash Files +[*.sh] +end_of_line = lf +