From 47d4cd3d25e5c4caf6aa8e7db399f98ec448cb00 Mon Sep 17 00:00:00 2001 From: Jan Krag Date: Mon, 8 Feb 2021 11:59:50 +0100 Subject: [PATCH] Add .editorconfig file --- .editorconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .editorconfig 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 +